UNPKG

kysely-codegen

Version:

`kysely-codegen` generates Kysely type definitions from your database. That's it.

9 lines (8 loc) 358 B
import type { EnumCollection } from '../enum-collection'; import type { TableMetadataOptions } from './table-metadata'; import { TableMetadata } from './table-metadata'; export declare class DatabaseMetadata { readonly enums: EnumCollection; readonly tables: TableMetadata[]; constructor(tables: TableMetadataOptions[], enums: EnumCollection); }