feat: Init

This commit is contained in:
beilunyang
2024-12-16 01:35:08 +08:00
commit cc7e5003c5
73 changed files with 15001 additions and 0 deletions

10
app/types/email.ts Normal file
View File

@@ -0,0 +1,10 @@
export interface ExpiryOption {
label: string
value: number // 过期时间(毫秒)
}
export const EXPIRY_OPTIONS: ExpiryOption[] = [
{ label: '1小时', value: 1000 * 60 * 60 },
{ label: '24小时', value: 1000 * 60 * 60 * 24 },
{ label: '3天', value: 1000 * 60 * 60 * 24 * 3 }
]