Update details of specified expression
export type UpdateExpressionProps = { expressionId: string; expressionTypeId?: string; // an expression type for the new expression expressionName?: string; // a name for the new expression description?: string; // a description for the new expression
const success = await assetlayer.slots.updateExpression({ expressionId: 'expressionId', expressionTypeId: 'expressionTypeId', expressionName: 'expressionName', });
type ReturnType = boolean;
Last updated 1 year ago