import { ExitType } from "../constants/ExitType"; export class Exit { public readonly type: ExitType; constructor(type: ExitType) { this.type = type; } }