|
Last change
on this file since ba17441 was a762898, checked in by istevanoska <ilinastevanoska@…>, 5 months ago |
|
Added visualizations
|
-
Property mode
set to
100644
|
|
File size:
276 bytes
|
| Line | |
|---|
| 1 | /**
|
|---|
| 2 | * A no-operation function that does nothing.
|
|---|
| 3 | * This can be used as a placeholder or default function.
|
|---|
| 4 | *
|
|---|
| 5 | * @example
|
|---|
| 6 | * noop(); // Does nothing
|
|---|
| 7 | *
|
|---|
| 8 | * @returns {void} This function does not return anything.
|
|---|
| 9 | */
|
|---|
| 10 | declare function noop(..._: any[]): void;
|
|---|
| 11 |
|
|---|
| 12 | export { noop };
|
|---|
Note:
See
TracBrowser
for help on using the repository browser.