/opt/canhelp/node_modules/zod/v4/core
NameSizeModeActions
api.cjs264650644editdlrm
api.d.cts294450644editdlrm
api.d.ts294400644editdlrm
api.js229830644editdlrm
checks.cjs210980644editdlrm
checks.d.cts127820644editdlrm
checks.d.ts127780644editdlrm
checks.js195440644editdlrm
core.cjs23090644editdlrm
core.d.cts18110644editdlrm
core.d.ts18080644editdlrm
core.js20850644editdlrm
doc.cjs11990644editdlrm
doc.d.cts3530644editdlrm
doc.d.ts3530644editdlrm
doc.js10880644editdlrm
errors.cjs76500644editdlrm
errors.d.cts78930644editdlrm
errors.d.ts78890644editdlrm
errors.js63160644editdlrm
function.cjs40120644editdlrm
function.d.cts35970644editdlrm
function.d.ts35930644editdlrm
function.js27170644editdlrm
index.cjs21630644editdlrm
index.d.cts5140644editdlrm
index.d.ts4990644editdlrm
index.js4990644editdlrm
json-schema.cjs770644editdlrm
json-schema.d.cts26760644editdlrm
json-schema.d.ts26760644editdlrm
json-schema.js110644editdlrm
parse.cjs39570644editdlrm
parse.d.cts15050644editdlrm
parse.d.ts15010644editdlrm
parse.js25520644editdlrm
regexes.cjs70620644editdlrm
regexes.d.cts27620644editdlrm
regexes.d.ts27620644editdlrm
regexes.js64110644editdlrm
registries.cjs16760644editdlrm
registries.d.cts16460644editdlrm
registries.d.ts16440644editdlrm
registries.js14850644editdlrm
schemas.cjs648430644editdlrm
schemas.d.cts446980644editdlrm
schemas.d.ts446910644editdlrm
schemas.js626520644editdlrm
standard-schema.cjs770644editdlrm
standard-schema.d.cts24030644editdlrm
standard-schema.d.ts24030644editdlrm
standard-schema.js110644editdlrm
to-json-schema.cjs359100644editdlrm
to-json-schema.d.cts37290644editdlrm
to-json-schema.d.ts37260644editdlrm
to-json-schema.js356870644editdlrm
util.cjs164380644editdlrm
util.d.cts107500644editdlrm
util.d.ts107460644editdlrm
util.js150040644editdlrm
versions.cjs1680644editdlrm
versions.d.cts1090644editdlrm
versions.d.ts1090644editdlrm
versions.js700644editdlrm
Edit: /opt/canhelp/node_modules/zod/v4/core/standard-schema.d.cts (2403B)
/** The Standard Schema interface. */ export interface StandardSchemaV1 { /** The Standard Schema properties. */ readonly "~standard": StandardSchemaV1.Props; } export declare namespace StandardSchemaV1 { /** The Standard Schema properties interface. */ interface Props { /** The version number of the standard. */ readonly version: 1; /** The vendor name of the schema library. */ readonly vendor: string; /** Validates unknown input values. */ readonly validate: (value: unknown) => Result | Promise>; /** Inferred types associated with the schema. */ readonly types?: Types | undefined; } /** The result interface of the validate function. */ type Result = SuccessResult | FailureResult; /** The result interface if validation succeeds. */ interface SuccessResult { /** The typed output value. */ readonly value: Output; /** The non-existent issues. */ readonly issues?: undefined; } /** The result interface if validation fails. */ interface FailureResult { /** The issues of failed validation. */ readonly issues: ReadonlyArray; } /** The issue interface of the failure output. */ interface Issue { /** The error message of the issue. */ readonly message: string; /** The path of the issue, if any. */ readonly path?: ReadonlyArray | undefined; } /** The path segment interface of the issue. */ interface PathSegment { /** The key representing a path segment. */ readonly key: PropertyKey; } /** The Standard Schema types interface. */ interface Types { /** The input type of the schema. */ readonly input: Input; /** The output type of the schema. */ readonly output: Output; } /** Infers the input type of a Standard Schema. */ type InferInput = NonNullable["input"]; /** Infers the output type of a Standard Schema. */ type InferOutput = NonNullable["output"]; }