UNPKG

@storm-stack/plugin-system

Version:

A library used to create and manage a plugin-styled architecture in a TypeScript application.

8 lines (7 loc) 266 B
/** * Create a resolver factory * * @param tsconfig - The path to the tsconfig file * @returns The resolver factory */ export declare const createResolver: (rootPath?: string, tsconfig?: string, autoInstall?: boolean) => ((request: string) => Promise<string>);