UNPKG

338 BPlain TextView Raw
1import {
2 EventBuilding,
3 EventBuilt,
4 EventError,
5 EventWriting,
6 EventWritten,
7} from "./types";
8
9export const BUILDING: EventBuilding = "BUILDING";
10export const BUILT: EventBuilt = "BUILT";
11
12export const WRITING: EventWriting = "WRITING";
13export const WRITTEN: EventWritten = "WRITTEN";
14
15export const ERROR: EventError = "ERROR";