Files
edgeKey/modules/site/types.ts
2026-07-13 12:08:22 +08:00

15 lines
376 B
TypeScript

export interface SiteSettingInput {
siteName: string;
siteUrl?: string | null;
siteSubtitle?: string | null;
logoIcon?: string | null;
logo?: string | null;
notice?: string | null;
supportContact?: string | null;
footerText?: string | null;
orderNotice?: string | null;
headCode?: string | null;
footerCode?: string | null;
timezone?: string | null;
}