import type * as HKT from "@principia/prelude/HKT"; /* * ------------------------------------------- * Const Model * ------------------------------------------- */ export type Const = E & { readonly _A: A }; export const URI = "Const"; export type URI = typeof URI; export type V = HKT.Auto; declare module "@principia/prelude/HKT" { interface URItoKind { readonly [URI]: Const; } }