FuncType - v0.16.0
    Preparing search index...

    Variable Map

    Map: <K, V>(
        entries?:
            | IterableIterator<[K, V], any, any>
            | readonly (readonly [K, V])[]
            | null,
    ) => Map<K, V> & {
        fromBinary: <K, V>(binary: string) => Map<K, V>;
        fromJSON: <K, V>(json: string) => Map<K, V>;
        fromYAML: <K, V>(yaml: string) => Map<K, V>;
    }

    Type Declaration

      • <K, V>(
            entries?:
                | IterableIterator<[K, V], any, any>
                | readonly (readonly [K, V])[]
                | null,
        ): Map<K, V>
      • Type Parameters

        • K
        • V

        Parameters

        • Optionalentries: IterableIterator<[K, V], any, any> | readonly (readonly [K, V])[] | null

        Returns Map<K, V>

    • fromBinary: <K, V>(binary: string) => Map<K, V>

      Creates a Map from binary string

    • fromJSON: <K, V>(json: string) => Map<K, V>

      Creates a Map from JSON string

    • fromYAML: <K, V>(yaml: string) => Map<K, V>

      Creates a Map from YAML string