/** * @see https://huan.github.io/state-switch/ */ import type { MachineConfig } from 'xstate'; interface ServiceCtlEvent { type: 'START' | 'STOP' | 'RESET' | 'CANCEL'; } interface ServiceCtlAction { type: never; } interface ServiceCtlState { states: { active: {}; inactive: {}; resetting: {}; starting: {}; stopping: {}; canceled: {}; }; } declare const initialContext: () => { counter: number; }; declare type ServiceCtlContext = ReturnType; declare const config: MachineConfig; export type { ServiceCtlAction, ServiceCtlContext, ServiceCtlEvent, ServiceCtlState, }; export { config }; //# sourceMappingURL=machine-config.d.ts.map