// ets_tracing: off

import type { Exited } from "./Exited.js"
import type { Running } from "./Running.js"

export type State = Exited | Running
