interface CategoryAddAssetAction {
    action: "addAsset";
    asset: AssetDraft;
    position?: number;
}

Properties

action: "addAsset"
asset: AssetDraft

Value to append.

position?: number

Position in the array at which the Asset should be put. When specified, the value must be between 0 and the total number of Assets minus 1.

Generated using TypeDoc