8 lines
116 B
TypeScript

export type Ctor = {
kind: CtorKind;
};
export type CtorKind =
| { tag: "error" }
| { tag: "struct" };