2026-02-01 13:01:28 +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;
};