interface TransitionParams {
    actions?: ActionDefinition[];
    check?: CheckFn;
    debug?: boolean;
    fromState: string;
    listeners?: Listener<any>[];
    onError?: onError;
    onMatch?: resultFn;
    onMismatch?: resultFn;
    toState: string;
}

Hierarchy

Properties

actions?: ActionDefinition[]
check?: CheckFn
debug?: boolean
fromState: string
listeners?: Listener<any>[]
onError?: onError
onMatch?: resultFn
onMismatch?: resultFn
toState: string