sb-mig
Version:
CLI to rule the world. (and handle stuff related to Storyblok CMS)
14 lines (13 loc) • 648 B
TypeScript
import type { ApiClient } from "../client.js";
export declare function getAllPresets(client: ApiClient): Promise<any>;
export declare function getPreset(client: ApiClient, presetId: string): Promise<any>;
export declare function createPreset(client: ApiClient, preset: any): Promise<any>;
export declare function updatePreset(client: ApiClient, preset: any): Promise<any>;
export declare function updatePresets(client: ApiClient, args: {
presets: any[];
spaceId: string;
options?: {
publish?: boolean;
};
}): Promise<any>;
export declare function getComponentPresets(client: ApiClient, componentName: string): Promise<any>;