@types/undertaker-registry
TypeScript definitions for undertaker-registry
Last updated 2 years ago by types .
MIT · Repository · Original npm · Tarball · package.json
$ cnpm install @types/undertaker-registry 
SYNC missed versions from official npm registry.

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.

Current Tags

  • 1.0.4                                ...           latest (2 years ago)
  • 1.0.1                                ...           ts2.0 (8 years ago)
  • 1.0.1                                ...           ts2.1 (8 years ago)
  • 1.0.1                                ...           ts2.2 (8 years ago)
  • 1.0.1                                ...           ts2.3 (8 years ago)
  • 1.0.1                                ...           ts2.4 (8 years ago)
  • 1.0.1                                ...           ts2.5 (8 years ago)
  • 1.0.1                                ...           ts2.6 (8 years ago)
  • 1.0.1                                ...           ts2.7 (8 years ago)
  • 1.0.1                                ...           ts2.8 (8 years ago)
  • 1.0.1                                ...           ts2.9 (8 years ago)
  • 1.0.1                                ...           ts3.0 (8 years ago)
  • 1.0.1                                ...           ts3.1 (8 years ago)
  • 1.0.1                                ...           ts3.2 (8 years ago)
  • 1.0.1                                ...           ts3.3 (8 years ago)
  • 1.0.1                                ...           ts3.4 (8 years ago)
  • 1.0.1                                ...           ts3.5 (8 years ago)
  • 1.0.1                                ...           ts3.6 (8 years ago)
  • 1.0.1                                ...           ts3.7 (8 years ago)
  • 1.0.1                                ...           ts3.8 (8 years ago)
  • 1.0.1                                ...           ts3.9 (8 years ago)
  • 1.0.1                                ...           ts4.0 (8 years ago)
  • 1.0.1                                ...           ts4.1 (8 years ago)
  • 1.0.1                                ...           ts4.2 (8 years ago)
  • 1.0.2                                ...           ts4.3 (3 years ago)
  • 1.0.2                                ...           ts4.4 (3 years ago)
  • 1.0.4                                ...           ts4.5 (2 years ago)
  • 1.0.4                                ...           ts4.6 (2 years ago)
  • 1.0.4                                ...           ts4.7 (2 years ago)
  • 1.0.4                                ...           ts4.8 (2 years ago)
  • 1.0.4                                ...           ts4.9 (2 years ago)
  • 1.0.4                                ...           ts5.0 (2 years ago)
  • 1.0.4                                ...           ts5.1 (2 years ago)
  • 1.0.4                                ...           ts5.2 (2 years ago)
  • 1.0.4                                ...           ts5.3 (2 years ago)
  • 1.0.4                                ...           ts5.4 (2 years ago)
  • 1.0.4                                ...           ts5.5 (2 years ago)
  • 1.0.4                                ...           ts5.6 (2 years ago)
  • 1.0.4                                ...           ts5.7 (2 years ago)
  • 1.0.4                                ...           ts5.8 (2 years ago)
  • 1.0.4                                ...           ts5.9 (2 years ago)

5 Versions

  • 1.0.4                                ...           2 years ago
  • 1.0.3                                ...           2 years ago
  • 1.0.2                                ...           3 years ago
  • 1.0.1                                ...           8 years ago
  • 1.0.0                                ...           9 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 0
Dependencies (0)
None
Dev Dependencies (0)
None
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |