UNPKG

@visactor/vrender-core

Version:

```typescript import { xxx } from '@visactor/vrender-core'; ```

11 lines (10 loc) 353 B
import type { IPlugin } from '../plugins/types'; import type { IPluginRegistry } from './types'; export declare class PluginRegistry implements IPluginRegistry { private readonly entries; install(plugin: IPlugin): void; uninstall(name: string): void; get(name: string): IPlugin | undefined; getAll(): IPlugin[]; clear(): void; }