Files
Shifted/node_modules/react-docgen/dist/importer/makeFsImporter.d.ts
2026-02-10 01:14:19 +00:00

9 lines
377 B
TypeScript

import type { Importer } from './index.js';
import type FileState from '../FileState.js';
interface FsImporterCache {
parseCache: Map<string, FileState>;
resolveCache: Map<string, string | null>;
}
export default function makeFsImporter(lookupModule?: (filename: string, basedir: string) => string, { parseCache, resolveCache }?: FsImporterCache): Importer;
export {};