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

    Variable object_definePropertiesConst

    object_defineProperties: <T>(
        o: T,
        properties: PropertyDescriptorMap & ThisType<any>,
    ) => T = ...

    alias for Object.defineProperties.

    Type declaration

      • <T>(o: T, properties: PropertyDescriptorMap & ThisType<any>): T
      • Adds one or more properties to an object, and/or modifies attributes of existing properties.

        Type Parameters

        • T

        Parameters

        • o: T

          Object on which to add or modify the properties. This can be a native JavaScript object or a DOM object.

        • properties: PropertyDescriptorMap & ThisType<any>

          JavaScript object that contains one or more descriptor objects. Each descriptor object describes a data property or an accessor property.

        Returns T