Base interface for Actions. Stores the actual type so that we can cast the data to the proper derived type and access the parameters.

interface Action {
    type: number;
}

Implemented by

Properties

Properties

type: number

See ActionTypeValues for possible values.

Generated using TypeDoc