···2020import { Ok as Y, CustomType as $CustomType, isEqual } from "../gleam.mjs";
21212222export class Ok extends $CustomType {}
2323-export function X$Ok() {
2424- return new Ok();
2525-}
2626-export function X$isOk(value) {
2727- return value instanceof Ok;
2828-}
2323+export const X$Ok = () => new Ok();
2424+export const X$isOk = (value) => value instanceof Ok;
29253026export function func() {
3127 let $ = (var0) => { return new Y(var0); };
···1717import { Ok as Y, CustomType as $CustomType } from "../gleam.mjs";
18181919export class Ok extends $CustomType {}
2020-export function X$Ok() {
2121- return new Ok();
2222-}
2323-export function X$isOk(value) {
2424- return value instanceof Ok;
2525-}
2020+export const X$Ok = () => new Ok();
2121+export const X$isOk = (value) => value instanceof Ok;
26222723export const y = (var0) => { return new Y(var0); };
···1212import { CustomType as $CustomType } from "../gleam.mjs";
13131414export class One extends $CustomType {}
1515-export function One$One() {
1616- return new One();
1717-}
1818-export function One$isOne(value) {
1919- return value instanceof One;
2020-}
1515+export const One$One = () => new One();
1616+export const One$isOne = (value) => value instanceof One;
21172218export function one() {
2319 return new One();