node-gulp-4.0.2+~cs38.20.35/000077500000000000000000000000001415667007300150405ustar00rootroot00000000000000node-gulp-4.0.2+~cs38.20.35/LICENSE000066400000000000000000000022121415667007300160420ustar00rootroot00000000000000 MIT License Copyright (c) Microsoft Corporation. All rights reserved. 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 node-gulp-4.0.2+~cs38.20.35/README.md000066400000000000000000000010271415667007300163170ustar00rootroot00000000000000# Installation > `npm install --save @types/undertaker-registry` # Summary This package contains type definitions for undertaker-registry (https://github.com/gulpjs/undertaker-registry). # Details Files were exported from https://www.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/undertaker-registry Additional Details * Last updated: Wed, 25 Oct 2017 16:19:00 GMT * Dependencies: none * Global values: none # Credits These definitions were written by Giedrius Grabauskas . node-gulp-4.0.2+~cs38.20.35/index.d.ts000066400000000000000000000034761415667007300167530ustar00rootroot00000000000000// Type definitions for undertaker-registry 1.0 // Project: https://github.com/gulpjs/undertaker-registry // Definitions by: Giedrius Grabauskas // Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped declare class UndertakerRegistry { /** * Returns the task with that name or undefined if no task is registered with that name. * Useful for custom task storage. * Custom registries can override this method when inheriting from this default registry. * @param taskName - Name of task. */ get(taskName: string): TTaskFunction; /** * No-op method that receives the undertaker instance. * Useful to set pre-defined tasks using the undertaker.task(taskName, fn) method. * Custom registries can override this method when inheriting from this default registry. * @param taker - Instance of undertaker. */ init(taker: any): void; /** * Adds a task to the registry. * If set modifies a task, it should return the new task so Undertaker can properly maintain metadata for the task. * Useful for adding custom behavior to every task as it is registered in the system. * Custom registries can override this method when inheriting from this default registry. * @param taskName - Name of task. * @param fn - Task function. */ set(taskName: string, fn: TTaskFunction): TTaskFunction; /** * Returns an object listing all tasks in the registry. * Necessary to override if the get method is overridden for custom task storage. * Custom registries can override this when when inheriting from this default registry. */ tasks(): { [taskName: string]: (...args: any[]) => any }; } declare namespace UndertakerRegistry { } export = UndertakerRegistry; node-gulp-4.0.2+~cs38.20.35/package.json000066400000000000000000000012501415667007300173240ustar00rootroot00000000000000{ "name": "@types/undertaker-registry", "version": "1.0.1", "description": "TypeScript definitions for undertaker-registry", "license": "MIT", "contributors": [ { "name": "Giedrius Grabauskas", "url": "https://github.com/GiedriusGrabauskas", "githubUsername": "GiedriusGrabauskas" } ], "main": "", "repository": { "type": "git", "url": "https://www.github.com/DefinitelyTyped/DefinitelyTyped.git" }, "scripts": {}, "dependencies": {}, "typesPublisherContentHash": "1a57ac0121c2a12ddc906e6f4e193ee38f0a356a1acafc8c720c6d0d46b60c01", "typeScriptVersion": "2.0" }