UNPKG

sb-mig

Version:

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

9 lines (8 loc) 500 B
import type { CreateAsset, GetAllAssets, GetAssetById, GetAssetByName, MigrateAsset, UpdateAsset } from "./assets.types.js"; export declare const getAllAssets: GetAllAssets; export declare const getAssetByName: GetAssetByName; export declare const migrateAsset: MigrateAsset; export declare const createAsset: CreateAsset; export declare const updateAsset: UpdateAsset; export declare const getAssetById: GetAssetById; export declare const getAsset: (assetName: string | undefined) => Promise<void>;