Files
Ammaar Reshi d6025af146 Initial commit
2025-01-04 14:06:53 +00:00

10 lines
533 B
TypeScript

import type { CreateInsertSchema, CreateSchemaFactoryOptions, CreateSelectSchema, CreateUpdateSchema } from "./schema.types.cjs";
export declare const createSelectSchema: CreateSelectSchema;
export declare const createInsertSchema: CreateInsertSchema;
export declare const createUpdateSchema: CreateUpdateSchema;
export declare function createSchemaFactory(options?: CreateSchemaFactoryOptions): {
createSelectSchema: CreateSelectSchema;
createInsertSchema: CreateInsertSchema;
createUpdateSchema: CreateUpdateSchema;
};