TenantAtlas/apps/platform/.pnpm-store/v10/files/a8/5d65f7525946f6b9e20be36b6a50ab82a9491d5c906d7ce8cd79efb15c4782cc4c48c8c7ed9fa710fbf02fac1b0da28aa085fedc4c51c09d68ba643370e752
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
355 B
Plaintext

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