7 lines
No EOL
128 B
TypeScript
7 lines
No EOL
128 B
TypeScript
export const alertModes = [
|
|
'note',
|
|
'notification',
|
|
'nothing'
|
|
] as const;
|
|
|
|
export type AlertMode = typeof alertModes[number]; |