101 lines
3.6 KiB
TypeScript
101 lines
3.6 KiB
TypeScript
import { IssueData, ZodErrorMap, ZodIssue } from "../ZodError";
|
|
export declare const ZodParsedType: {
|
|
function: "function";
|
|
number: "number";
|
|
string: "string";
|
|
nan: "nan";
|
|
integer: "integer";
|
|
float: "float";
|
|
boolean: "boolean";
|
|
date: "date";
|
|
bigint: "bigint";
|
|
symbol: "symbol";
|
|
undefined: "undefined";
|
|
null: "null";
|
|
array: "array";
|
|
object: "object";
|
|
unknown: "unknown";
|
|
promise: "promise";
|
|
void: "void";
|
|
never: "never";
|
|
map: "map";
|
|
set: "set";
|
|
};
|
|
export declare type ZodParsedType = keyof typeof ZodParsedType;
|
|
export declare const getParsedType: (data: any, cache?: Map<any, "function" | "number" | "string" | "nan" | "integer" | "float" | "boolean" | "date" | "bigint" | "symbol" | "undefined" | "null" | "array" | "object" | "unknown" | "promise" | "void" | "never" | "map" | "set"> | undefined) => ZodParsedType;
|
|
export declare const makeIssue: (params: {
|
|
data: any;
|
|
path: (string | number)[];
|
|
errorMaps: ZodErrorMap[];
|
|
issueData: IssueData;
|
|
}) => ZodIssue;
|
|
export declare type ParseParams = {
|
|
path: (string | number)[];
|
|
errorMap: ZodErrorMap;
|
|
async: boolean;
|
|
};
|
|
export declare type ParsePathComponent = string | number;
|
|
export declare type ParsePath = ParsePathComponent[];
|
|
export declare const EMPTY_PATH: ParsePath;
|
|
export interface ParseContext {
|
|
readonly path: ParsePath;
|
|
readonly issues: ZodIssue[];
|
|
readonly schemaErrorMap?: ZodErrorMap;
|
|
readonly contextualErrorMap?: ZodErrorMap;
|
|
readonly async: boolean;
|
|
readonly parent: ParseContext | null;
|
|
readonly typeCache: Map<any, ZodParsedType>;
|
|
readonly data: any;
|
|
readonly parsedType: ZodParsedType;
|
|
}
|
|
export declare type ParseInput = {
|
|
data: any;
|
|
path: (string | number)[];
|
|
parent: ParseContext;
|
|
};
|
|
export declare function addIssueToContext(ctx: ParseContext, issueData: IssueData): void;
|
|
export declare type ObjectPair = {
|
|
key: SyncParseReturnType<any>;
|
|
value: SyncParseReturnType<any>;
|
|
};
|
|
export declare class ParseStatus {
|
|
value: "aborted" | "dirty" | "valid";
|
|
dirty(): void;
|
|
abort(): void;
|
|
static mergeArray(status: ParseStatus, results: SyncParseReturnType<any>[]): SyncParseReturnType;
|
|
static mergeObjectAsync(status: ParseStatus, pairs: {
|
|
key: ParseReturnType<any>;
|
|
value: ParseReturnType<any>;
|
|
}[]): Promise<SyncParseReturnType<any>>;
|
|
static mergeObjectSync(status: ParseStatus, pairs: {
|
|
key: SyncParseReturnType<any>;
|
|
value: SyncParseReturnType<any>;
|
|
alwaysSet?: boolean;
|
|
}[]): SyncParseReturnType;
|
|
}
|
|
export interface ParseResult {
|
|
status: "aborted" | "dirty" | "valid";
|
|
data: any;
|
|
}
|
|
export declare type INVALID = {
|
|
status: "aborted";
|
|
};
|
|
export declare const INVALID: INVALID;
|
|
export declare type DIRTY<T> = {
|
|
status: "dirty";
|
|
value: T;
|
|
};
|
|
export declare const DIRTY: <T>(value: T) => DIRTY<T>;
|
|
export declare type OK<T> = {
|
|
status: "valid";
|
|
value: T;
|
|
};
|
|
export declare const OK: <T>(value: T) => OK<T>;
|
|
export declare type SyncParseReturnType<T = any> = OK<T> | DIRTY<T> | INVALID;
|
|
export declare type AsyncParseReturnType<T> = Promise<SyncParseReturnType<T>>;
|
|
export declare type ParseReturnType<T> = SyncParseReturnType<T> | AsyncParseReturnType<T>;
|
|
export declare const isAborted: (x: ParseReturnType<any>) => x is INVALID;
|
|
export declare const isDirty: <T>(x: ParseReturnType<T>) => x is OK<T> | DIRTY<T>;
|
|
export declare const isValid: <T>(x: ParseReturnType<T>) => x is OK<T> | DIRTY<T>;
|
|
export declare const isAsync: <T>(x: ParseReturnType<T>) => x is AsyncParseReturnType<T>;
|
|
//# sourceMappingURL=parseUtil.d.ts.map
|