11 lines
189 B
TypeScript
11 lines
189 B
TypeScript
export enum MobileUnlockTiming {
|
|
Immediately = 'immediately',
|
|
OnQuit = 'on-quit',
|
|
}
|
|
|
|
export type TimingDisplayOption = {
|
|
title: string
|
|
key: MobileUnlockTiming
|
|
selected: boolean
|
|
}
|