import type { M } from "ts-algebra"; import type { JSONSchema } from "../definitions"; import type { Writable } from "../type-utils"; import type { ParseSchema, ParseSchemaOptions } from "./index"; export type ConstSchema = JSONSchema & Readonly<{ const: unknown; }>; export type ParseConstSchema = M.$Intersect, ParseSchema, OPTIONS>>; type ParseConst = M.Const>; export {};