mirror of
https://github.com/swc-project/swc.git
synced 2024-12-21 04:32:01 +03:00
bbaf619f63
swc_bundler: - [x] Fix wrapped esms. (denoland/deno#9307) - [x] Make test secure.
33 lines
736 B
TypeScript
33 lines
736 B
TypeScript
// Loaded from https://raw.githubusercontent.com/colinhacks/zod/654680afc2ede388e71e09104eac5a0088fe3207/deno/lib/ZodTypes.ts
|
|
|
|
|
|
export enum ZodTypes {
|
|
string = "string",
|
|
number = "number",
|
|
bigint = "bigint",
|
|
boolean = "boolean",
|
|
date = "date",
|
|
undefined = "undefined",
|
|
null = "null",
|
|
array = "array",
|
|
object = "object",
|
|
union = "union",
|
|
intersection = "intersection",
|
|
tuple = "tuple",
|
|
record = "record",
|
|
map = "map",
|
|
function = "function",
|
|
lazy = "lazy",
|
|
literal = "literal",
|
|
enum = "enum",
|
|
nativeEnum = "nativeEnum",
|
|
promise = "promise",
|
|
any = "any",
|
|
unknown = "unknown",
|
|
never = "never",
|
|
void = "void",
|
|
transformer = "transformer",
|
|
optional = "optional",
|
|
nullable = "nullable",
|
|
}
|