UNPKG

377 BTypeScriptView Raw
1import type { Importer } from './index.js';
2import type FileState from '../FileState.js';
3interface FsImporterCache {
4 parseCache: Map<string, FileState>;
5 resolveCache: Map<string, string | null>;
6}
7export default function makeFsImporter(lookupModule?: (filename: string, basedir: string) => string, { parseCache, resolveCache }?: FsImporterCache): Importer;
8export {};