Files
standardnotes-app-web/app/assets/javascripts/Device/WebOrDesktopDeviceInterface.ts

10 lines
285 B
TypeScript

import { DeviceInterface, RawKeychainValue } from '@standardnotes/snjs'
export interface WebOrDesktopDeviceInterface extends DeviceInterface {
readonly appVersion: string
getKeychainValue(): Promise<RawKeychainValue>
setKeychainValue(value: RawKeychainValue): Promise<void>
}