UNPKG

generate-license-file

Version:

Generates a text file containing all of the licenses for your production dependencies

7 lines (6 loc) 246 B
export type ConfigFile = { path: string; config: unknown; }; export declare const loadConfig: (filePath: string) => Promise<ConfigFile | undefined>; export declare const findConfig: (directory: string) => Promise<ConfigFile | undefined>;