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
166 B
TypeScript
6 lines
166 B
TypeScript
import { UseCaseInterface } from '@standardnotes/domain-core'
|
|
|
|
export interface UseCaseContainerInterface {
|
|
get signInWithRecoveryCodes(): UseCaseInterface<void>
|
|
}
|