UNPKG

webpack-entries-autodiscovery

Version:
13 lines (12 loc) 431 B
import { DiscoverEntriesConfig } from './discover-entries-config'; export declare class EntriesDiscoverer { private params; discoverEntries(params: DiscoverEntriesConfig): Entries; private discoverEntriesInPath; private getEntriesGlob; private validateConfig; } export declare type Entries = Record<string, string>; export declare class EntriesDirDoesntExist extends Error { constructor(dirName: string); }