initial commit
This commit is contained in:
39
types/config.type.ts
Normal file
39
types/config.type.ts
Normal file
@@ -0,0 +1,39 @@
|
||||
export type TConfig = {
|
||||
AvatarURL: string;
|
||||
Sentence?: string;
|
||||
Nickname: string;
|
||||
|
||||
SiteTitle: string;
|
||||
SiteDomain: string;
|
||||
|
||||
PageCovers: {
|
||||
websiteCoverURL: string;
|
||||
};
|
||||
|
||||
SocialLinks: {
|
||||
twitter?: string;
|
||||
facebook?: string;
|
||||
instagram?: string;
|
||||
github?: string;
|
||||
mastodon?: string;
|
||||
linkedin?: string;
|
||||
email: string;
|
||||
};
|
||||
|
||||
Giscus?: {
|
||||
enabled: boolean;
|
||||
repo: string;
|
||||
repoId: string;
|
||||
category: string;
|
||||
categoryId: string;
|
||||
};
|
||||
|
||||
SponsorLink?: {
|
||||
wechatPay?: string;
|
||||
alipay?: string;
|
||||
paypal?: string;
|
||||
};
|
||||
|
||||
YearStart: number;
|
||||
AuthorName: string;
|
||||
};
|
||||
Reference in New Issue
Block a user