UNPKG

typedash

Version:

modern, type-safe collection of utility functions

13 lines (11 loc) 262 B
/** * 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; export { noop };