UNPKG

@hexworks/cobalt-state

Version:

State machine utility for Cobalt.

11 lines 249 B
import { EventType } from "./EventType"; export class FormSubmitted { id; data; type = EventType.FormSubmitted; constructor(id, data) { this.id = id; this.data = data; } } //# sourceMappingURL=FormSubmitted.js.map