interface Operation<Name extends DataFrameOperationName> {
    operand: undefined | NodeId;
    operation: Name;
    options?: DataFrameOperationOptions<Name>;
    type?: ConstraintType;
}

Type Parameters

Properties

operand: undefined | NodeId

The ID of the data frame operand of the operation (may be undefined)

operation: Name

The type of the abstract data frame operation (see DataFrameOperationName)

The optional additional options for the abstract operation (see DataFrameOperationOptions)

The optional constraint type to overwrite the default type of the operation (see ConstraintType)