sb-mig
Version:
CLI to rule the world. (and handle stuff related to Storyblok CMS)
7 lines (6 loc) • 380 B
TypeScript
import type { GetAllAssets, GetAssetById, GetAssetByName, MigrateAsset } from "./assets.types.js";
export declare const getAllAssets: GetAllAssets;
export declare const getAssetByName: GetAssetByName;
export declare const migrateAsset: MigrateAsset;
export declare const getAssetById: GetAssetById;
export declare const getAsset: (assetName: string | undefined) => Promise<void>;