UNPKG

gluegun

Version:

A delightful toolkit for building Node-powered CLIs.

10 lines (9 loc) 361 B
import { Plugin } from '../domain/plugin'; import { Options } from '../domain/options'; /** * Loads a plugin from a directory. * * @param directory The full path to the directory to load. * @param options Additional options to customize the loading process. */ export declare function loadPluginFromDirectory(directory: string, options?: Options): Plugin;