mirror of
https://github.com/Mercantec-GHC/h4-projekt-gruppe-0-sm.git
synced 2025-04-28 16:54:06 +02:00
8 lines
116 B
TypeScript
8 lines
116 B
TypeScript
export type Ctor = {
|
|
kind: CtorKind;
|
|
};
|
|
|
|
export type CtorKind =
|
|
| { tag: "error" }
|
|
| { tag: "struct" };
|