interface BaseTransitionParams {
    check?: CheckFn;
    debug?: boolean;
    listeners?: Listener<any>[];
    onError?: onError;
    onMatch: resultFn;
    onMismatch?: resultFn;
}

Properties

check?: CheckFn
debug?: boolean
listeners?: Listener<any>[]
onError?: onError
onMatch: resultFn
onMismatch?: resultFn