typedash
Version:
modern, type-safe collection of utility functions
14 lines • 361 B
TypeScript
//#region src/functions/noop/noop.d.ts
/**
* A no-operation function that returns `undefined` for any input.
* @param args Any arguments.
* @example
* ```ts
* noop() // undefined
* noop(1, 2, 3) // undefined
* ```
*/
declare function noop(...args: readonly unknown[]): void;
//#endregion
export { noop as t };
//# sourceMappingURL=noop-bRmTspGB.d.ts.map