Files
standardnotes-app-web/packages/snjs/lib/Services/Session/ShareToken.ts
2022-07-06 14:04:30 +02:00

11 lines
292 B
TypeScript

import { User } from '@standardnotes/responses'
import { AnyKeyParamsContent } from '@standardnotes/common'
import { RawSessionPayload } from './Sessions/Types'
export type ShareToken = RawSessionPayload & {
masterKey: string
keyParams: AnyKeyParamsContent
user: User
host: string
}