diff options
Diffstat (limited to 'node_modules/@nodelib/fs.stat/out/providers/async.d.ts')
-rw-r--r-- | node_modules/@nodelib/fs.stat/out/providers/async.d.ts | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/node_modules/@nodelib/fs.stat/out/providers/async.d.ts b/node_modules/@nodelib/fs.stat/out/providers/async.d.ts new file mode 100644 index 0000000..85423ce --- /dev/null +++ b/node_modules/@nodelib/fs.stat/out/providers/async.d.ts @@ -0,0 +1,4 @@ +import type Settings from '../settings'; +import type { ErrnoException, Stats } from '../types'; +export declare type AsyncCallback = (error: ErrnoException, stats: Stats) => void; +export declare function read(path: string, settings: Settings, callback: AsyncCallback): void; |