// Loaded from https://raw.githubusercontent.com/colinhacks/zod/654680afc2ede388e71e09104eac5a0088fe3207/deno/lib/types/promise.ts import { ZodTypes } from "../ZodTypes.ts"; import { ZodType, ZodTypeDef, ZodTypeAny } from "./base.ts"; // import { ZodUndefined } from './undefined'; // import { ZodNull } from './null'; // import { ZodUnion } from './union'; export interface ZodPromiseDef extends ZodTypeDef { t: ZodTypes.promise; type: T; } export class ZodPromise extends ZodType< Promise, ZodPromiseDef, Promise > { toJSON = () => { return { t: this._def.t, type: this._def.type.toJSON(), }; }; // opt optional: () => ZodUnion<[this, ZodUndefined]> = () => ZodUnion.create([this, ZodUndefined.create()]); // null nullable: () => ZodUnion<[this, ZodNull]> = () => ZodUnion.create([this, ZodNull.create()]); static create = (schema: T): ZodPromise => { return new ZodPromise({ t: ZodTypes.promise, type: schema, }); }; }