UNPKG

278 BTypeScriptView Raw
1import { Application } from '../application';
2import { AbstractComponent } from './component';
3export declare class PluginHost extends AbstractComponent<Application> {
4 plugins: string[];
5 load(): boolean;
6 private discoverNpmPlugins;
7 private resolvePluginPaths;
8}