TenantAtlas/apps/platform/.pnpm-store/v10/files/65/babde6b2f112ce0eedf69251a9283a89bc25205921ffeb6e365ac9ac66165fa8671ed8af1b662c10f71d5e3aa4dff5c757c8185f03dd43fa7dbe71f0f9d359
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

10 lines
354 B
Plaintext

import type { Knex as KnexType } from 'knex';
import type { InferInsertModel, InferSelectModel, Table } from "../table.js";
declare module 'knex/types/tables.ts' {
type Knexify<T extends Table> = KnexType.CompositeTableType<InferSelectModel<T, {
dbColumnNames: true;
}>, InferInsertModel<T, {
dbColumnNames: true;
}>> & {};
}