/** * ArkType compatibility facade — `@oh-my-pi/omptype/ark`. * * Lets code written against arktype keep its imports and names while running * on the omptype lazy-JIT runtime: swap `from "arktype"` for * `from "@oh-my-pi/omptype/ark"` and nothing else changes. New code should * import `@oh-my-pi/omptype` directly. * * Compatibility affordance: `ArkError` / `ArkErrors` alias `OmpError` / * `OmpErrors`. All schema builders, including recursive `scope()`, are * re-exported unchanged. */ import { OmpError, OmpErrors } from "./errors.js"; export * from "./index.js"; export declare const ArkError: typeof OmpError; export type ArkError = OmpError; export declare const ArkErrors: typeof OmpErrors; export type ArkErrors = OmpErrors;