Describes a state transition in a work item.

interface WorkItemStateTransition {
    actions?: string[];
    to?: string;
}

Properties

Properties

actions?: string[]

Gets a list of actions needed to transition to that state.

to?: string

Name of the next state.