Utility TypeScript @ 2.0.0-beta.5
    Preparing search index...

    Type Alias VarsInternal

    2.0.0-beta.3

    type Vars = {
        NaN: number;
        null: null;
        number: number;
        string: string;
        array?: any[];
        bigint?: bigint;
        class?: typeof TestClass;
        classInstance?: TestClass;
        date?: Date;
        false?: false;
        functionParams?: (a: string, b: string) => any;
        functionSimple?: () => any;
        map?: Map<any, any>;
        objectEmpty?: object;
        objectSimple?: object;
        regex?: RegExp;
        set?: Set<any>;
        stringMultiline?: string;
        true?: true;
        undefined?: undefined;
    }
    Index

    Properties

    NaN: number
    null: null
    number: number
    string: string
    array?: any[]
    bigint?: bigint
    class?: typeof TestClass
    classInstance?: TestClass
    date?: Date
    false?: false
    functionParams?: (a: string, b: string) => any
    functionSimple?: () => any
    map?: Map<any, any>
    objectEmpty?: object
    objectSimple?: object
    regex?: RegExp
    set?: Set<any>
    stringMultiline?: string
    true?: true
    undefined?: undefined