kysely-codegen
Version:
`kysely-codegen` generates Kysely type definitions from your database. That's it.
9 lines (8 loc) • 305 B
TypeScript
import { IntrospectorDialect } from '../introspector/dialect';
import type { Adapter } from './adapter';
/**
* A Dialect is the glue between the codegen and the specified database.
*/
export declare abstract class GeneratorDialect extends IntrospectorDialect {
abstract readonly adapter: Adapter;
}