@gati-framework/types
Version:
Gati Type System - TypeScript-first branded types and schema system
11 lines • 581 B
JavaScript
/**
* @module @gati-framework/types
* @description Gati Type System - TypeScript-first branded types and constraint combinators
*/
// Re-export registry and brands
export * from './registry.js';
export * from './brands/index.js';
export { GTYPE_SCHEMA_VERSION, isPrimitive, isObject, isArray, isTuple, isUnion, isIntersection, isEnum, isRef, isLiteral, } from './gtype.js';
// Re-export serialization utilities
export { serializeGType, deserializeGType, fingerprint, areGTypesEqual, cloneGType, validateGTypeSchema, } from './serialization.js';
//# sourceMappingURL=index.js.map