UNPKG

@agility/cli

Version:

Agility CLI for working with your content. (Public Beta)

10 lines (9 loc) 385 B
import * as mgmtApi from "@agility/management-sdk"; export declare function pushAssets(sourceData: mgmtApi.Media[], // TODO: Type these targetData: mgmtApi.Media[], // TODO: Type these onProgress?: (processed: number, total: number, status?: "success" | "error") => void): Promise<{ status: "success" | "error"; successful: number; failed: number; skipped: number; }>;