wonder-stuff
    Preparing search index...

    Variable entriesConst

    entries: {
        <T>(obj: { [s: string]: T } | ArrayLike<T>): [string, T][];
        (obj: {}): [string, any][];
    } = ...

    Return an array of key/value tuples for an object.

    Type Declaration

      • <T>(obj: { [s: string]: T } | ArrayLike<T>): [string, T][]
      • Type Parameters

        • T

        Parameters

        • obj: { [s: string]: T } | ArrayLike<T>

        Returns [string, T][]

      • (obj: {}): [string, any][]
      • Parameters

        • obj: {}

        Returns [string, any][]

    The object for which the values are to be returned.

    An array of key/value tuples for the object.