Files
edgeKey/modules/site/types.ts
2026-04-21 11:56:35 +08:00

12 lines
290 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;
}