* 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
464 B
TypeScript
12 lines
464 B
TypeScript
import { DecryptedItemInterface } from '../../Abstract/Item/Interfaces/DecryptedItem'
|
|
import { ProtocolVersion } from '../../Local/Protocol/ProtocolVersion'
|
|
import { KeySystemItemsKeyContent } from './KeySystemItemsKeyContent'
|
|
|
|
export interface KeySystemItemsKeyInterface extends DecryptedItemInterface<KeySystemItemsKeyContent> {
|
|
readonly creationTimestamp: number
|
|
readonly rootKeyToken: string
|
|
|
|
get keyVersion(): ProtocolVersion
|
|
get itemsKey(): string
|
|
}
|