0
0
Fork 0

リファクタとデザイン調整とresolve #1

This commit is contained in:
Xeltica 2020-09-09 00:48:02 +09:00
parent 41f40dd2c2
commit 219b15d9e6
17 changed files with 404 additions and 64 deletions

7
src/types/AlertMode.ts Normal file
View file

@ -0,0 +1,7 @@
export const alertModes = [
'note',
'notification',
'nothing'
] as const;
export type AlertMode = typeof alertModes[number];