UNPKG

statewave

Version:
10 lines (8 loc) 178 B
import { Transition } from "."; export function transition<S, E>(event: E, state: S): Transition<S, E> { return () => ({ __transition: true, event, state, }); }