Type alias TypeOfDictionary

TypeOfDictionary: {
    bigint: bigint;
    boolean: boolean;
    function: Function;
    null: null;
    number: number;
    object: object;
    string: string;
    symbol: symbol;
    undefined: undefined;
}

typeof dictionary.

Remarks

Dictionary of types and their typeof values, including the proposed but never added type "null" for null.

Example

TypeOfMap["string"]; // `string`
TypeOfMap["boolean"]; // `boolean`
TypeOfMap["function"]; // `GenericFunction`

See

Type declaration