UNPKG

654 BTypeScriptView Raw
1/// <reference types="node" />
2import * as fs from 'node:fs';
3import type { ErrnoException } from '../types';
4export type StatAsynchronousMethod = (path: string, callback: (error: ErrnoException | null, stats: fs.Stats) => void) => void;
5export type StatSynchronousMethod = (path: string) => fs.Stats;
6export interface FileSystemAdapter {
7 lstat: StatAsynchronousMethod;
8 stat: StatAsynchronousMethod;
9 lstatSync: StatSynchronousMethod;
10 statSync: StatSynchronousMethod;
11}
12export declare const FILE_SYSTEM_ADAPTER: FileSystemAdapter;
13export declare function createFileSystemAdapter(fsMethods?: Partial<FileSystemAdapter>): FileSystemAdapter;