0
0
Fork 0
misskey-tools/src/types/AlertMode.ts

7 lines
No EOL
128 B
TypeScript

export const alertModes = [
'note',
'notification',
'nothing'
] as const;
export type AlertMode = typeof alertModes[number];