mirror of
https://github.com/bitwarden/browser.git
synced 2024-11-14 10:26:19 +01:00
ea6666780a
Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.
5 lines
122 B
TypeScript
5 lines
122 B
TypeScript
export abstract class StateMigrationService {
|
|||
needsMigration: () => Promise<boolean>;
|
|||
migrate: () => Promise<void>;
|
|||
}
|