kysely-codegen
Version:
`kysely-codegen` generates Kysely type definitions from your database. That's it.
16 lines (15 loc) • 662 B
TypeScript
import type { NumericParser } from '../../../introspector/dialects/postgres/numeric-parser';
import { PostgresIntrospectorDialect } from '../../../introspector/dialects/postgres/postgres-dialect';
import type { GeneratorDialect } from '../../dialect';
import { PostgresAdapter } from './postgres-adapter';
type PostgresDialectOptions = {
defaultSchemas?: string[];
domains?: boolean;
numericParser?: NumericParser;
partitions?: boolean;
};
export declare class PostgresDialect extends PostgresIntrospectorDialect implements GeneratorDialect {
readonly adapter: PostgresAdapter;
constructor(options?: PostgresDialectOptions);
}
export {};