swc/bundler/tests/.cache/untrusted/c975ee8158b4dfe2f9b40a891bffd63b2dee4b06.ts
강동윤 bbaf619f63
fix(bundler): Fix bugs (#1437)
swc_bundler:
 - [x] Fix wrapped esms. (denoland/deno#9307)
 - [x] Make test secure.
2021-03-02 17:33:03 +09:00

28 lines
496 B
TypeScript

// Loaded from https://raw.githubusercontent.com/colinhacks/zod/654680afc2ede388e71e09104eac5a0088fe3207/deno/lib/ZodParsedType.ts
import { util } from "./helpers/util.ts";
export const ZodParsedType = util.arrayToEnum([
"string",
"nan",
"number",
"integer",
"boolean",
"date",
"bigint",
"symbol",
"function",
"undefined",
"null",
"array",
"object",
"unknown",
"promise",
"void",
"never",
"map",
]);
export type ZodParsedType = keyof typeof ZodParsedType;