mirror of
https://github.com/standardnotes/app
synced 2026-07-31 14:16:15 -04:00
* feat(snjs): add sign in with recovery codes use case * fix(snjs): code review adjustments * fix(snjs): remove unnecessary exposed getter * fix(services): waiting for event handling * fix: preferences test Co-authored-by: Mo <[email protected]>
6 lines
110 B
TypeScript
6 lines
110 B
TypeScript
export interface SignInWithRecoveryCodesDTO {
|
|
recoveryCodes: string
|
|
username: string
|
|
password: string
|
|
}
|