mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
14 lines
428 B
TypeScript
14 lines
428 B
TypeScript
// Type definitions for immediate 3.2
|
|
// Project: https://github.com/calvinmetcalf/immediate#readme
|
|
// Definitions by: BendingBender <https://github.com/BendingBender>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 3.0
|
|
|
|
export as namespace immediate;
|
|
export = immediate;
|
|
|
|
declare function immediate<TArgs extends any[]>(
|
|
task: (...args: TArgs) => void,
|
|
...args: TArgs
|
|
): void;
|