TenantAtlas/apps/platform/.pnpm-store/v10/files/be/cd7f7866da0cfd635d6ae9613f7323e752c2df0c5070c3e36c8ed8a3e805e83757c17f5f0403ed7303c67ad8f988e75d1ab49ede47f940643d8c77d0c3100a
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
370 B
Plaintext

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