You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
410 B
20 lines
410 B
export interface Config {
|
|
tel1?: string;
|
|
icpNo?: string;
|
|
tel2?: string;
|
|
copyright?: string;
|
|
qrcode?: string;
|
|
domain?: string;
|
|
siteName?: string;
|
|
siteLogo?: string;
|
|
subpageBanner?: string;
|
|
bottomBg?: string;
|
|
}
|
|
|
|
export interface BreadcrumbItem {
|
|
parentName?: string;
|
|
parentPath?: string;
|
|
categoryName?: string;
|
|
categoryPath?: string;
|
|
title?: string;
|
|
}
|