Interface ChameleonPluginInternal

interface ChameleonPlugin {
    install: (<T>(context: T, pluginOption: any) => Promise<unknown>);
    name: string;
}

Implemented by

Properties

Properties

install: (<T>(context: T, pluginOption: any) => Promise<unknown>)
name: string