Skip to content
TypeAliasTypes & Utilities@public

ValidationResult

ts
export type ValidationResult<T> = { data: T; success: true; } | { issues: ValidationIssue[]; success: false; }

Released under the MIT License.