18 lines
681 B
JavaScript
18 lines
681 B
JavaScript
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;
|