import { Settings } from 'nsn-entity';
import { ReactNode } from 'react';

/** 应用 元信息 */
export interface ManifestProps {

  /** 应用名称 */
  name?: Settings['title'];

  /** 应用名称-英文 */
  nameEn?: Settings['titleEn'];

  /** 应用描述 */
  description?: Settings['subTitle'];

  /** 应用描述-英文 */
  descriptionEn?: Settings['subTitleEn'];

  /** 应用名称-中文简称 */
  shortName?: string,

  /** 应用名称-英文简称 */
  shortNameEn?: string,

  /** 有颜色的logo */
  logo?: string;

  /** 有颜色的全尺寸logo */
  logoFull?: string;

  /** 白色的logo */
  logoWhite?: string;

  /** 白色的全尺寸logo */
  logoWhiteFull?: string;

  /** 页脚信息 */
  footer?: {

    /** 版权申明 */
    copyright?: string;

    /** 帮助链接 */
    helpLink?: string;

    /** 条款链接 */
    termsLink?: string;

    /** logo链接 */
    logoLink?: string;
  }
}
