UNPKG

sury

Version:

🧬 The fastest schema with next-gen DX

16 lines (9 loc) • 337 B
// The file is hand written import { Error, Item, Path, Schema } from "./S"; /* eslint-disable */ /* tslint:disable */ export type t<Output, Input = unknown> = Schema<Output, Input>; export type schema<Output, Input = unknown> = Schema<Output, Input>; export type item = Item; export type Path_t = Path; export type error = Error;