diff options
Diffstat (limited to 'node_modules/@nodelib/fs.walk/out/providers/sync.d.ts')
-rw-r--r-- | node_modules/@nodelib/fs.walk/out/providers/sync.d.ts | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts b/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts new file mode 100644 index 0000000..551c42e --- /dev/null +++ b/node_modules/@nodelib/fs.walk/out/providers/sync.d.ts @@ -0,0 +1,10 @@ +import SyncReader from '../readers/sync'; +import type Settings from '../settings'; +import type { Entry } from '../types'; +export default class SyncProvider { + private readonly _root; + private readonly _settings; + protected readonly _reader: SyncReader; + constructor(_root: string, _settings: Settings); + read(): Entry[]; +} |