Files
standardnotes-app-web/packages/services/src/Domain/Encryption/RootKey/ValidatePasscodeResult.ts
2023-07-04 07:31:50 -05:00

14 lines
251 B
TypeScript

import { RootKeyInterface } from '@standardnotes/models'
export type ValidatePasscodeResult =
| {
valid: true
artifacts: {
wrappingKey: RootKeyInterface
}
}
| {
valid: boolean
artifacts?: undefined
}