@gati-framework/runtime
Version:
Gati runtime execution engine for running handler-based applications
11 lines • 393 B
TypeScript
/**
* @module runtime/gtype/validator
* @description GType validator implementation
*/
import type { GType } from './schema.js';
import type { PathSegment, ValidationResult } from './errors.js';
/**
* Validate a value against a GType schema
*/
export declare function validate(value: unknown, schema: GType, path?: PathSegment[]): ValidationResult;
//# sourceMappingURL=validator.d.ts.map