zod
Version:
Typescript-first schema declaration and validation library with static type inference
23 lines (19 loc) • 641 B
text/typescript
import * as z from './base';
import { ZodUndefined } from './undefined';
import { ZodNull } from './null';
import { ZodUnion } from './union';
export interface ZodBooleanDef extends z.ZodTypeDef {
t: z.ZodTypes.boolean;
}
export class ZodBoolean extends z.ZodType<boolean, ZodBooleanDef> {
optional: () => ZodUnion<[this, ZodUndefined]> = () =>
ZodUnion.create([this, ZodUndefined.create()]);
nullable: () => ZodUnion<[this, ZodNull]> = () =>
ZodUnion.create([this, ZodNull.create()]);
toJSON = () => this._def;
static create = (): ZodBoolean => {
return new ZodBoolean({
t: z.ZodTypes.boolean,
});
};
}