define-properties/000755 001751 000177 0000000000 14522265601016166 5ustar00runner000000 000000 1452226560114522265601define-properties/LICENSE000644 001751 000177 0000002165 14522265601017177 0ustar00runner000000 000000 1452226560114522265601 MIT License Copyright (c) Microsoft Corporation. Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE define-properties/README.md000644 001751 000177 0000002563 14522265601017444 0ustar00runner000000 000000 1452231215114522265601# Installation > `npm install --save @types/define-properties` # Summary This package contains type definitions for define-properties (https://github.com/ljharb/define-properties#readme). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/define-properties. ## [index.d.ts](https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/define-properties/index.d.ts) ````ts declare namespace defineProperties { /** * Whether the current environment correctly supports property descriptors. */ const supportsDescriptors: boolean; } /** * Defines new properties in `map` as non-enumerable if they don't already * exist on `object`. * * @param object The object to define non-enumerable properties on. * @param map The map of newly defined properties. * @param predicates The optional predicates map, return `true` to override existing properties on `object`. */ declare function defineProperties( object: object, map: M & ThisType, predicates?: Partial boolean>>, ): void; export = defineProperties; ```` ### Additional Details * Last updated: Mon, 06 Nov 2023 22:41:05 GMT * Dependencies: none # Credits These definitions were written by [ExE Boss](https://github.com/ExE-Boss), and [Jordan Harband](https://github.com/ljharb). define-properties/index.d.ts000644 001751 000177 0000001303 14522265601020064 0ustar00runner000000 000000 1452226560114522265601declare namespace defineProperties { /** * Whether the current environment correctly supports property descriptors. */ const supportsDescriptors: boolean; } /** * Defines new properties in `map` as non-enumerable if they don't already * exist on `object`. * * @param object The object to define non-enumerable properties on. * @param map The map of newly defined properties. * @param predicates The optional predicates map, return `true` to override existing properties on `object`. */ declare function defineProperties( object: object, map: M & ThisType, predicates?: Partial boolean>>, ): void; export = defineProperties; define-properties/package.json000644 001751 000177 0000001710 14522265601020444 0ustar00runner000000 000000 1452231215114522265601{ "name": "@types/define-properties", "version": "1.1.5", "description": "TypeScript definitions for define-properties", "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/define-properties", "license": "MIT", "contributors": [ { "name": "ExE Boss", "githubUsername": "ExE-Boss", "url": "https://github.com/ExE-Boss" }, { "name": "Jordan Harband", "githubUsername": "ljharb", "url": "https://github.com/ljharb" } ], "main": "", "types": "index.d.ts", "repository": { "type": "git", "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/define-properties" }, "scripts": {}, "dependencies": {}, "typesPublisherContentHash": "e6a5ecff7e658b146a26affeca9abc399306b83ed893e5af98b8ba07dd2b4cd7", "typeScriptVersion": "4.5" }