@types/undertaker-registry
TypeScript icon, indicating that this package has built-in type declarations

1.0.4 • Public • Published

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://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/undertaker-registry.

index.d.ts

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<TTaskFunction>(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<TTaskFunction>(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;

Additional Details

  • Last updated: Tue, 07 Nov 2023 15:11:36 GMT
  • Dependencies: none

Credits

These definitions were written by Giedrius Grabauskas.

Versions

Current Tags

VersionDownloads (Last 7 Days)Tag
1.0.4182,604ts5.8
1.0.4182,604ts5.7
1.0.4182,604latest
1.0.4182,604ts4.5
1.0.4182,604ts4.6
1.0.4182,604ts4.7
1.0.4182,604ts4.8
1.0.4182,604ts4.9
1.0.4182,604ts5.0
1.0.4182,604ts5.1
1.0.4182,604ts5.2
1.0.4182,604ts5.3
1.0.4182,604ts5.4
1.0.4182,604ts5.5
1.0.4182,604ts5.9
1.0.4182,604ts5.6
1.0.4182,604ts6.0
1.0.165,888ts2.0
1.0.165,888ts2.1
1.0.165,888ts2.2
1.0.165,888ts2.3
1.0.165,888ts2.4
1.0.165,888ts2.5
1.0.165,888ts2.6
1.0.165,888ts2.7
1.0.165,888ts2.8
1.0.165,888ts2.9
1.0.165,888ts3.0
1.0.165,888ts3.1
1.0.165,888ts3.2
1.0.165,888ts3.3
1.0.165,888ts3.4
1.0.165,888ts3.5
1.0.165,888ts3.6
1.0.165,888ts3.7
1.0.165,888ts3.8
1.0.165,888ts3.9
1.0.165,888ts4.0
1.0.165,888ts4.1
1.0.165,888ts4.2
1.0.21,793ts4.3
1.0.21,793ts4.4

Version History

VersionDownloads (Last 7 Days)Published
1.0.4182,604
1.0.31,339
1.0.21,793
1.0.165,888
1.0.021

Package Sidebar

Install

npm i @types/undertaker-registry

Weekly Downloads

251,645

Version

1.0.4

License

MIT

Unpacked Size

5.87 kB

Total Files

5

Last publish

Collaborators

  • types