UNPKG

cogsbox-shape

Version:

A TypeScript library for creating type-safe database schemas with Zod validation, SQL type definitions, and automatic client/server transformations. Unifies client, server, and database types through a single schema definition, with built-in support for r

3 lines (2 loc) 124 B
import { Kysely } from "kysely"; export declare function createSqliteDb<TDb = unknown>(path: string): Promise<Kysely<TDb>>;