Interface ActionCall

An action call.

interface ActionCall {
    actionName: string;
    args: readonly any[];
    serialized?: boolean;
    targetPath: Path;
    targetPathIds: readonly (null | string)[];
}

Properties

actionName: string

Action name (name of the function).

args: readonly any[]

Action arguments.

serialized?: boolean

Marks this action call as non-serialized.

targetPath: Path

Path to the model where the action will be run, as an array of string | number.

targetPathIds: readonly (null | string)[]

Ids of models along the path to the target, null if it is not a model.