NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/@antv/g2/esm/chart/controller/index.d.ts

26 lines
737 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
import { ControllerCtor } from './base';
/**
*
* @param name
* @param plugin
* @returns void
*/
export declare function registerComponentController(name: string, plugin: ControllerCtor): void;
/**
*
* @param name
* @returns void
*/
export declare function unregisterComponentController(name: string): void;
/**
*
* @returns string[]
*/
export declare function getComponentControllerNames(): string[];
/**
*
* @param name
* @returns
*/
export declare function getComponentController(name: string): ControllerCtor;