swc/bundler/tests/.cache/deno/c07b6c382ece40a0756a3b4cadf1cf3cec50506a.ts
강동윤 246bdd5088
fix(bundler): Fix bugs (#1572)
swc_bundler:
 - Ensure that denoland/deno#10141 is fixed. 
 - Run deno tests on ci.
 - Support nested `export *`. (denoland/deno#10153, denoland/deno#10174)

swc_ecma_codegen:
 - Remove `,` after rest elements. (#1573, denoland/deno#10167)

swc_ecma_transforms_optimization:
 - Don't drop items used by the discriminant of a switch.

swc_ecma_transforms_typescript:
 - Remove constructors without a body.
2021-04-14 14:00:33 +00:00

34 lines
628 B
TypeScript

// Loaded from https://deno.land/x/validasaur/src/types.ts
import type {
ValidationErrors,
InvalidPayload,
ValidationUtils,
InvalidParams,
} from "./interfaces.ts";
export type OptionalValue = null | undefined | "";
export type Validity = InvalidPayload | undefined;
export type Rule = (
value: any,
utils: ValidationUtils,
) => Validity | Promise<Validity>;
export type MessageFunction = (
params: InvalidParams,
checkType: string,
) => string;
export type ValidationResult = [boolean, ValidationErrors];
export type PrimitiveTypes =
| null
| boolean
| string
| number
| undefined
| Symbol;