init
This commit is contained in:
@@ -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;
|
||||
Reference in New Issue
Block a user