INIT
This commit is contained in:
+7
@@ -0,0 +1,7 @@
|
||||
/**
|
||||
* Executes an array of callback functions with the same arguments.
|
||||
* @template T The types of the arguments that the callback functions take.
|
||||
* @param callbacks array of callback functions to execute.
|
||||
* @returns A new function that executes all of the original callback functions with the same arguments.
|
||||
*/
|
||||
export declare function executeCallbacks<T extends unknown[]>(...callbacks: T): (...args: unknown[]) => void;
|
||||
Reference in New Issue
Block a user