Type alias SpecTypes

SpecTypes: {
    boolean: boolean;
    number: number;
    number[]: number[];
    string: string;
    string[]: string[];
}

A mapping between SpecTypeNames (i.e. string representations of SpecTypes as per TypeScript's type system) and their corresponding SpecTypes.

Type declaration

  • boolean: boolean
  • number: number
  • number[]: number[]
  • string: string
  • string[]: string[]

Generated using TypeDoc