* chore: display shared vault file usage * fix: specs * fix: reshape filtering result * fix: resolving invalid server items * fix: get revisions specs * fix: processing issue * fix: tests --------- Co-authored-by: Mo <mo@standardnotes.com>
12 lines
421 B
TypeScript
12 lines
421 B
TypeScript
import { ProtocolVersion } from '../../../Local/Protocol/ProtocolVersion'
|
|
import { EncryptedPayloadInterface } from '../../Payload/Interfaces/EncryptedPayload'
|
|
import { ItemInterface } from './ItemInterface'
|
|
|
|
export interface EncryptedItemInterface extends ItemInterface<EncryptedPayloadInterface> {
|
|
content: string
|
|
version: ProtocolVersion
|
|
errorDecrypting: boolean
|
|
waitingForKey?: boolean
|
|
auth_hash?: string
|
|
}
|