UNPKG

@progress/kendo-charts

Version:

Kendo UI platform-independent Charts library

10 lines (8 loc) 198 B
export interface ValidationSuccess { valid: true; } export interface ValidationError { valid: false; error: Error; } export type ValidationResult = ValidationError | ValidationSuccess;