faviconv-noREADME|ARCHIVES|CATEGORIES|SEARCH|
«Wed Jan 06 2021AkrISrnAPI89643d9Raw
Interfaces
The documentation is a work in progress, and English edition is just an empty shell for now. I will translate it when Chinese edition has done.

IConfig

v1.2.8 +

interface IConfig {
  siteName?: string;
  dateFormat?: string;
  smartQuotes?: string | string[];
  replacer?: [string, string][];
  cdn?: string;
  cacheKey?: string | Dict<string>;
  paths: {
    favicon?: string
    index: string
    readme: string
    archive: string
    category: string
    search: string
    common?: string
  };
  messages: {
    home: string
    raw: string
    footnotes: string
    returnHome: string
    lastUpdated: string
    untagged: string
    pageError: string
    searching: string
    searchNothing: string
    showBacklinks: string
    noBacklinks: string
    loading: string
    redirectFrom: string

    [index: string]: TMessage
  };
  defaultConf?: string;
  multiConf?: Dict<IConfig>;
  alias?: string;

  [index: string]: any;}
TypeScript

IMessage

v1.2.8 +

interface IMessage {
  [index: string]: TMessage;}
TypeScript

IFlags

v1.2.1 +

interface IFlags {
  title: string;
  tags?: string[];
  updated?: string[];
  cover?: string;
  times?: number[];
  startDate?: string;
  endDate?: string;
  creator?: string;
  updater?: string;

  [index: string]: string | string[] | number[] | undefined;}
TypeScript

ISimpleFile

v1.2.2 +

interface ISimpleFile {
  path: string;
  flags: IFlags;
  isError?: boolean;}
TypeScript

IFile

v1.2.2 +

interface IFile extends ISimpleFile {
  data: string;
  links: Dict<TLink>;}
TypeScript
This page is open source, improve it
Graph