isguard-ts
    Preparing search index...

    Type Alias TypeByTypeOfResult

    Maps typeof result strings to their corresponding TypeScript types.

    type TypeByTypeOfResult = {
        bigint: bigint;
        boolean: boolean;
        function: Function;
        number: number;
        object: object | null;
        string: string;
        symbol: symbol;
        undefined: undefined;
    }
    Index

    Properties

    bigint: bigint
    boolean: boolean
    function: Function
    number: number
    object: object | null
    string: string
    symbol: symbol
    undefined: undefined