13 lines
399 B
TypeScript
13 lines
399 B
TypeScript
import { ItemContent } from '../../Abstract/Content/ItemContent'
|
|
import { ProtocolVersion, AnyKeyParamsContent } from '@standardnotes/common'
|
|
|
|
export interface RootKeyContentSpecialized {
|
|
version: ProtocolVersion
|
|
masterKey: string
|
|
serverPassword?: string
|
|
dataAuthenticationKey?: string
|
|
keyParams: AnyKeyParamsContent
|
|
}
|
|
|
|
export type RootKeyContent = RootKeyContentSpecialized & ItemContent
|