This commit is contained in:
2026-06-29 15:56:30 +02:00
commit 6fe57399c4
152 changed files with 32122 additions and 0 deletions
+17
View File
@@ -0,0 +1,17 @@
import { CustomType as $CustomType } from "./gleam.mjs";
export class Hirachy extends $CustomType {}
export const Type$Hirachy = () => new Hirachy();
export const Type$isHirachy = (value) => value instanceof Hirachy;
export class Truth extends $CustomType {}
export const Type$Truth = () => new Truth();
export const Type$isTruth = (value) => value instanceof Truth;
export class Marking extends $CustomType {}
export const Type$Marking = () => new Marking();
export const Type$isMarking = (value) => value instanceof Marking;
export class Quote extends $CustomType {}
export const Type$Quote = () => new Quote();
export const Type$isQuote = (value) => value instanceof Quote;