tooot/src/utils/migrations/contexts/v0.ts

14 lines
292 B
TypeScript
Raw Normal View History

2021-11-15 23:43:35 +01:00
export type ContextsV0 = {
storeReview: {
context: Readonly<number>
current: number
shown: boolean
}
publicRemoteNotice: {
context: Readonly<number>
current: number
hidden: boolean
}
previousTab: 'Tab-Local' | 'Tab-Public' | 'Tab-Notifications' | 'Tab-Me'
}