d/000755 001751 000177 0000000000 14522265601012765 5ustar00runner000000 000000 1452226560114522265601d/LICENSE000644 001751 000177 0000002165 14522265601013776 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 d/README.md000644 001751 000177 0000000706 14522265601014246 0ustar00runner000000 000000 1452231071714522265601# Installation > `npm install --save @types/d` # Summary This package contains type definitions for d (https://github.com/medikoo/d#readme). # Details Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/d. ### Additional Details * Last updated: Mon, 06 Nov 2023 22:41:05 GMT * Dependencies: none # Credits These definitions were written by [BendingBender](https://github.com/BendingBender). d/auto-bind.d.ts000644 001751 000177 0000000510 14522265601015435 0ustar00runner000000 000000 1452226560114522265601export = autoBind; declare function autoBind( obj: { [key: string]: PropertyDescriptor }, options?: autoBind.Options, ): PropertyDescriptorMap; declare namespace autoBind { interface Options { overwriteDefinition?: boolean | undefined; resolveContext?: ((context: any) => any) | undefined; } } d/index.d.ts000644 001751 000177 0000002366 14522265601014675 0ustar00runner000000 000000 1452226560114522265601export = d; declare function d(value: any, options?: PropertyDescriptor): PropertyDescriptor; declare function d(flags: d.Flags, value: any, options?: PropertyDescriptor): PropertyDescriptor; declare namespace d { function gs(flags: GetSetFlags, options: PropertyDescriptor): PropertyDescriptor; function gs(flags: GetSetFlags, get: (...args: any[]) => any, options: PropertyDescriptor): PropertyDescriptor; function gs( get: (...args: any[]) => any, set?: ((...args: any[]) => any) | null, options?: PropertyDescriptor, ): PropertyDescriptor; function gs( get: ((...args: any[]) => any) | null | undefined, set: (...args: any[]) => any, options?: PropertyDescriptor, ): PropertyDescriptor; function gs( flags: GetSetFlags, get: (...args: any[]) => any, set?: ((...args: any[]) => any) | null, options?: PropertyDescriptor, ): PropertyDescriptor; function gs( flags: GetSetFlags, get: ((...args: any[]) => any) | null | undefined, set: (...args: any[]) => any, options?: PropertyDescriptor, ): PropertyDescriptor; type GetSetFlags = "c" | "e" | "ce"; type Flags = GetSetFlags | "w" | "cw" | "ew" | "cew"; } d/lazy.d.ts000644 001751 000177 0000000152 14522265601014534 0ustar00runner000000 000000 1452226560114522265601export = lazy; declare function lazy(obj: { [key: string]: PropertyDescriptor }): PropertyDescriptorMap; d/package.json000644 001751 000177 0000001405 14522265601015252 0ustar00runner000000 000000 1452231071714522265601{ "name": "@types/d", "version": "1.0.4", "description": "TypeScript definitions for d", "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/d", "license": "MIT", "contributors": [ { "name": "BendingBender", "githubUsername": "BendingBender", "url": "https://github.com/BendingBender" } ], "main": "", "types": "index.d.ts", "repository": { "type": "git", "url": "https://github.com/DefinitelyTyped/DefinitelyTyped.git", "directory": "types/d" }, "scripts": {}, "dependencies": {}, "typesPublisherContentHash": "4368ca0842582df547d0eba74c9b41ec783e50c8aa3c739634faf5c27477c2b9", "typeScriptVersion": "4.5" }