mirror of
https://github.com/swc-project/swc.git
synced 2024-12-20 20:22:26 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
48 lines
1.3 KiB
TypeScript
48 lines
1.3 KiB
TypeScript
// Loaded from https://raw.githubusercontent.com/colinhacks/zod/654680afc2ede388e71e09104eac5a0088fe3207/deno/lib/types/intersection.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 ZodIntersectionDef<
|
|
T extends ZodTypeAny = ZodTypeAny,
|
|
U extends ZodTypeAny = ZodTypeAny
|
|
> extends ZodTypeDef {
|
|
t: ZodTypes.intersection;
|
|
left: T;
|
|
right: U;
|
|
}
|
|
|
|
export class ZodIntersection<
|
|
T extends ZodTypeAny,
|
|
U extends ZodTypeAny
|
|
> extends ZodType<
|
|
T["_output"] & U["_output"],
|
|
ZodIntersectionDef<T, U>,
|
|
T["_input"] & U["_input"]
|
|
> {
|
|
// opt optional: () => ZodUnion<[this, ZodUndefined]> = () => ZodUnion.create([this, ZodUndefined.create()]);
|
|
// null nullable: () => ZodUnion<[this, ZodNull]> = () => ZodUnion.create([this, ZodNull.create()]);
|
|
|
|
toJSON = () => ({
|
|
t: this._def.t,
|
|
left: this._def.left.toJSON(),
|
|
right: this._def.right.toJSON(),
|
|
});
|
|
|
|
static create = <T extends ZodTypeAny, U extends ZodTypeAny>(
|
|
left: T,
|
|
right: U
|
|
): ZodIntersection<T, U> => {
|
|
return new ZodIntersection({
|
|
t: ZodTypes.intersection,
|
|
left: left,
|
|
right: right,
|
|
});
|
|
};
|
|
}
|