//#region src/noop.d.ts /** * A no op, or no-op, function for no operation * * @remarks Please see {@link https://dev.to/praneshpsg239/noop-in-javascript-478h | this article} for more information. * * @param _params - An optional parameter passed to the function. It can be anything (but is not used in any way) */ declare const noop: (_params?: unknown) => void; /** * An asynchronous no-operation function that does nothing. * This can be used as a placeholder or default function. * * @example * asyncNoop(); // Does nothing * * @returns This function returns a Promise that resolves to undefined. */ declare function asyncNoop(_params?: unknown): Promise; //#endregion export { asyncNoop, noop }; //# sourceMappingURL=noop.d.cts.map