@oazmi/kitchensink - v0.9.13
    Preparing search index...

    Variable object_getOwnPropertyDescriptorsConst

    object_getOwnPropertyDescriptors: <T>(
        o: T,
    ) => { [P in string | number | symbol]: TypedPropertyDescriptor<T[P]> } & {
        [x: string]: PropertyDescriptor;
    } = ...

    alias for Object.getOwnPropertyDescriptors.

    Type declaration

      • <T>(
            o: T,
        ): { [P in string | number | symbol]: TypedPropertyDescriptor<T[P]> } & {
            [x: string]: PropertyDescriptor;
        }
      • Returns an object containing all own property descriptors of an object

        Type Parameters

        • T

        Parameters

        • o: T

          Object that contains the properties and methods. This can be an object that you created or an existing Document Object Model (DOM) object.

        Returns { [P in string | number | symbol]: TypedPropertyDescriptor<T[P]> } & {
            [x: string]: PropertyDescriptor;
        }