Interface PluginType

interface PluginType {
    enable: boolean;
    importPath: string;
    metaFilePath: string;
    metadata: Partial<PluginMetadata>;
    name: string;
    init(): Promise<void>;
}

Implemented by

Properties

enable: boolean
importPath: string
metaFilePath: string
metadata: Partial<PluginMetadata>
name: string

Methods

  • Returns Promise<void>