11 lines
228 B
TypeScript
Raw Normal View History

/**
* Shared Validation Schemas
* Pure Zod schemas for API contracts - shared between frontend and backend
*/
// Re-export Zod for convenience
export { z } from "zod";
// Framework-specific exports
export * from "./react";