source: node_modules/es-toolkit/dist/function/asyncNoop.d.ts@ a762898

Last change on this file since a762898 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago

Added visualizations

  • Property mode set to 100644
File size: 332 bytes
Line 
1/**
2 * An asynchronous no-operation function that does nothing.
3 * This can be used as a placeholder or default function.
4 *
5 * @example
6 * asyncNoop(); // Does nothing
7 *
8 * @returns {Promise<void>} This function returns a Promise that resolves to undefined.
9 */
10declare function asyncNoop(): Promise<void>;
11
12export { asyncNoop };
Note: See TracBrowser for help on using the repository browser.