UNPKG

@pipepack/enhanced-resolver

Version:

yet, reimplement enhanced-resolve with the idea 'simple is best'.

7 lines (6 loc) 176 B
/// <reference types="node" /> import { Stats } from 'fs'; export interface FileSystem { stat(path: string): Promise<Stats>; readFile(path: string): Promise<Buffer>; }