UNPKG

sb-mig

Version:

CLI to rule the world. (and handle stuff related to Storyblok CMS)

10 lines (9 loc) 503 B
import type { ApiClient } from "../client.js"; export declare function getAllPlugins(client: ApiClient): Promise<any>; export declare function getPlugin(client: ApiClient, pluginName: string): Promise<any>; export declare function getPluginDetails(client: ApiClient, plugin: any): Promise<any>; export declare function updatePlugin(client: ApiClient, args: { plugin: any; body: string; }): Promise<any>; export declare function createPlugin(client: ApiClient, pluginName: string): Promise<any>;