faviconv-noREADME|ARCHIVES|CATEGORIES|SEARCH|
«Wed Jan 06 2021AkrISrnAPI81d16a2Raw
Definition
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.

Interfaces

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

Types

Dict

v1.2.0 +

type Dict<T> = { [index: string]: T }
TypeScript

TLink

v1.2.11 +

type TLink = {
  href: string
  texts: string[]
  isMarkdown?: boolean
  isImage?: boolean
  isAnchor?: boolean
  isExternal?: boolean}
TypeScript

TFileData

v1.2.2 +

type TFileData = {
  data: string
  flags: IFlags
  links: string[]}
TypeScript

TQuery

v1.2.0 +

type TQuery = Dict<string | null>
TypeScript

THashPath

v1.2.0 +

type THashPath = {
  path: string
  anchor: string
  query: string}
TypeScript

TConfList

v1.2.2 +

type TConfList = [string[], string[]]
TypeScript

TMessageData

v1.2.8 +

type TMessageData = string | number | boolean | null
TypeScript

TMessage

v1.2.8 +

type TMessage = TMessageData | TMessageData[] | IMessage
TypeScript

TRedirectList

v1.2.2 +

type TRedirectList = [string[], string[]]
TypeScript

TFlag

v1.2.9 +

type TFlag = {
  key: string
  value: string}
TypeScript

TAnchor

v1.2.10 +

type TAnchor = {
  text: string
  href: string
  isExternal?: boolean
  isMarkdown?: boolean}
TypeScript

TAsyncResult

v1.2.9 +

type TAsyncResult = {
  id: string
  result: string
  isError?: boolean}
TypeScript

VPD

v1.2.6 +

/**
 * vue-property-decorator/lib/index.d.ts
 */type VPD = any
TypeScript

Vue

v1.2.0 +

/**
 * vue/types/vue.d.ts
 */type Vue = any
TypeScript

Route

v1.2.0 +

/**
 * vue-router/types/router.d.ts
 */type Route = any
TypeScript

axios

v1.2.0 +

/**
 * axios/index.d.ts
 */type axios = any
TypeScript

Dayjs

v1.2.0 +

/**
 * dayjs/index.d.ts
 */type Dayjs = any
TypeScript

MarkdownIt

v1.2.0 +

/**
 * markdown-it/lib/index.d.ts
 */type MarkdownIt = any
TypeScript

Token

v1.2.0 +

/**
 * markdown-it/lib/token.d.ts
 */type Token = any
TypeScript
This page is open source, improve it
Graph