UNPKG

@visactor/vchart

Version:

charts lib based @visactor/VGrammar

9 lines (8 loc) 457 B
import type { IComponentPlugin, IComponentPluginService } from './interface'; import type { IComponent } from '../../component/interface'; import { BasePluginService } from '../base/base-plugin-service'; export declare class ComponentPluginService<T extends IComponentPlugin = IComponentPlugin> extends BasePluginService<T> implements IComponentPluginService<T> { component: IComponent; constructor(component: IComponent); releaseAll(): void; }