interface PluginServer {
    deploy(pluginEntry, type?, options?): Promise<void>;
    getAllStorageValues(kind): Promise<KeysToKeysToAnyValue>;
    getStorageValue(key, kind): Promise<KeysToAnyValues>;
    setStorageValue(key, value, kind): Promise<boolean>;
    undeploy(pluginId): Promise<void>;
    uninstall(pluginId): Promise<void>;
}

Implemented by

Methods