This commit is contained in:
Morten Olsen
2025-07-31 08:51:50 +02:00
parent 523637d40f
commit 85d043aec3
6 changed files with 71 additions and 10 deletions

View File

@@ -3,4 +3,10 @@ declare global {
type ExpectedAny = any;
}
export {};
// eslint-disable-next-line @typescript-eslint/no-empty-function
const noop = () => {};
// eslint-disable-next-line @typescript-eslint/no-empty-function
const noopAsync = async () => {};
export { noop, noopAsync };