This commit is contained in:
2025-07-13 02:46:13 +09:00
parent fdf242c060
commit 0c46cf28db
29 changed files with 509 additions and 456 deletions
+9 -9
View File
@@ -1,13 +1,13 @@
export const CATEGORIES = ['general',
'character',
'deerjikist',
'meme',
'material',
'nico',
'meta'] as const
'character',
'deerjikist',
'meme',
'material',
'meta',
'nico'] as const
export const USER_ROLES = ['admin', 'member', 'guest'] as const
export const enum ViewFlagBehavior { OnShowedDetail = 1,
OnClickedLink = 2,
NotAuto = 3 }
export const ViewFlagBehavior = { OnShowedDetail: 1,
OnClickedLink: 2,
NotAuto: 3 } as const