import { PluginType } from '../type/index'; export interface XYPluginIF { init(): void; getVersion(): string; getPluginType(): PluginType; getPluginName(): string; destroy(): void; isSupportExtension(): boolean; createProcessor(config: any): T | null; }