Action used by the document.

interface DocumentAction {
    id: string;
    name: string;
    script: string;
    triggers: ActionTrigger[];
}

Properties

Properties

id: string

Unique Id of the action.

name: string

Unique action name

script: string

The JavaScript based action script.

triggers: ActionTrigger[]

All the triggers this action will react to.