This commit is contained in:
2024-04-18 21:12:37 +02:00
commit 78abae13b7
76 changed files with 8565 additions and 0 deletions

8
dist_ts/tiny-readdir/utils.d.ts vendored Normal file
View File

@@ -0,0 +1,8 @@
import type { Callback } from './types.js';
declare const isFunction: (value: unknown) => value is Function;
declare const makeCounterPromise: () => {
promise: Promise<void>;
increment: Callback;
decrement: Callback;
};
export { isFunction, makeCounterPromise };