FuncType - v0.8.85
    Preparing search index...

    Variable Map

    Map: <K, V>(
        entries?:
            | null
            | IterableIterator<[K, V], any, any>
            | readonly (readonly [K, V])[],
    ) => 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?:
                | null
                | IterableIterator<[K, V], any, any>
                | readonly (readonly [K, V])[],
        ): Map<K, V>
      • Type Parameters

        • K
        • V

        Parameters

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

        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