CoolFace
Apppublic

AK-21/Graphite-Industrial-Intelligence

sourceHugging Faceupdated 3mo agoView on Hugging Face
0likes
primary-key.d.cts11 linesDownload Raw Back to drizzle-orm
1import { entityKind } from "./entity.cjs";2import type { AnyColumn } from "./column.cjs";3import type { Table } from "./table.cjs";4export declare abstract class PrimaryKey {5    readonly table: Table;6    readonly columns: AnyColumn[];7    static readonly [entityKind]: string;8    protected $brand: 'PrimaryKey';9    constructor(table: Table, columns: AnyColumn[]);10}11