Files
antrean-anjungan/examples/nuxt3-websocket-client/node_modules/@vercel/nft/out/fs.d.ts
2025-09-18 19:01:22 +07:00

23 lines
745 B
TypeScript

import type { Stats } from 'fs';
export declare class CachedFileSystem {
private fileCache;
private statCache;
private symlinkCache;
private fileIOQueue;
constructor({ cache, fileIOConcurrency, }: {
cache?: {
fileCache?: Map<string, Promise<string | null>>;
statCache?: Map<string, Promise<Stats | null>>;
symlinkCache?: Map<string, Promise<string | null>>;
};
fileIOConcurrency: number;
});
readlink(path: string): Promise<string | null>;
readFile(path: string): Promise<string | null>;
stat(path: string): Promise<Stats | null>;
private _internalReadlink;
private _internalReadFile;
private _internalStat;
private executeFileIO;
}