11 lines
228 B
TypeScript
11 lines
228 B
TypeScript
/**
|
|
* 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";
|