typedash
Version:
modern, type-safe collection of utility functions
14 lines • 362 B
text/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-C98enuIT.d.cts.map