UNPKG

cumqueoptio

Version:

The meta-framework suite designed from scratch for frontend-focused modern web development.

10 lines (7 loc) 256 B
export const MachineActionPrefix = '__MACHINE__'; export const MachineStateSymbol = Symbol('__machine__'); export const ActionTypes = { SEND: 'SEND', SET: 'SET', } as const; export type ActionTypeNames = typeof ActionTypes[keyof typeof ActionTypes];