UNPKG

sb-mig

Version:

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

14 lines (13 loc) 422 B
import type { ApiClient } from "../client.js"; export declare function getAllAssets(client: ApiClient, args: { spaceId: string; search?: string; }): Promise<any>; export declare function getAssetById(client: ApiClient, args: { spaceId: string; assetId: number; }): Promise<any>; export declare function getAssetByName(client: ApiClient, args: { spaceId: string; fileName: string; }): Promise<any>;