@publish-cms/type
Version:
Publish CMS Core Type
32 lines (31 loc) • 672 B
TypeScript
export declare class ISiteInfo {
title?: string;
description?: string;
keywords?: string;
image?: string;
favicon?: string;
logo?: string;
isSigninCapcha?: boolean;
canComment?: boolean;
follow?: boolean;
siteHeader?: string;
siteFooter?: string;
customCSS?: string;
googleTag?: string;
facebookPixel?: string;
baseURL?: string;
apiURL?: string;
manageURL?: string;
customPhrase?: any;
}
export declare class IHeadContent {
title?: string;
desc?: string;
keyword?: string;
slug?: string;
image?: string;
}
export declare class ITopSearch {
count: number;
value: string;
}