forked from kingwrcy/moments
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.d.ts
31 lines (31 loc) · 896 Bytes
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
declare module "nuxt/schema" {
interface RuntimeConfig {
googleRecaptchaSecretKey: string;
notifyMail: string;
mailHost: string;
mailPort: number;
mailSecure: boolean;
mailName: string;
mailPassword: string;
mailFrom: string;
mailFromName: string;
aliyunAccessKeyId:string;
aliyunAccessKeySecret: string;
}
interface PublicRuntimeConfig {
aliyunTextJudgeEnable: boolean;
notifyByEmailEnable: boolean;
momentsShowComment: boolean;
momentsCommentEnable: boolean;
momentsCommentOrderBy: string;
momentsCommentMaxLength: number;
momentsToolbarEnableDouban: boolean;
momentsToolbarEnableMusic163: boolean;
momentsToolbarEnableVideo: boolean;
momentsMaxLine: number;
siteUrl:string;
pageSize:number;
}
}
// It is always important to ensure you import/export something when augmenting a type
export {};