TenantAtlas/apps/platform/.pnpm-store/v10/files/08/a8a1867f1b48b586a1661c96f3e9c3886418204d92e797e91396ed36cfa9a2aac690e7382fb59edd95723d9c348d48ef550cf75164c7d69683ac9160266263
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

11 lines
367 B
Plaintext

import { entityKind } from "./entity.js";
import type { AnyColumn } from "./column.js";
import type { Table } from "./table.js";
export declare abstract class PrimaryKey {
readonly table: Table;
readonly columns: AnyColumn[];
static readonly [entityKind]: string;
protected $brand: 'PrimaryKey';
constructor(table: Table, columns: AnyColumn[]);
}