export interface ISeo { manifest: IMnSeo; setting: IStSeo; seo: IOnSeo; } export interface IOnSeo { title?: string; description?: string; imgUrl?: string; imgSeo?: string; og: IOgSeo; twiter: ITwitterSeo; } export interface ITwitterSeo { twCard?: string; } export interface IOgSeo { ogUrl?: string; ogSiteName?: string; } export interface IMnSeo { mnName?: string; mnShortName?: string; mnScope?: string; mnStartUrl?: string; mnDisplay?: string; } export interface IStSeo { stAppIcon?: string; }