TenantAtlas/apps/platform/.pnpm-store/v10/files/4c/71e89707498c93de16d80f782e1b171a96004e090ef7025eadd2e36ef91fb034cccc44d982e8d927cb8159a8c27e9d18efb2872e35edb5386015bc5b968159
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

29 lines
1.2 KiB
Plaintext

import type { ColumnBuilderBaseConfig } from "../../column-builder.cjs";
import type { ColumnBaseConfig } from "../../column.cjs";
import { entityKind } from "../../entity.cjs";
import type { AnyGelTable } from "../table.cjs";
import { GelColumn, GelColumnBuilder } from "./common.cjs";
export type GelRealBuilderInitial<TName extends string> = GelRealBuilder<{
name: TName;
dataType: 'number';
columnType: 'GelReal';
data: number;
driverParam: number;
enumValues: undefined;
}>;
export declare class GelRealBuilder<T extends ColumnBuilderBaseConfig<'number', 'GelReal'>> extends GelColumnBuilder<T, {
length: number | undefined;
}> {
static readonly [entityKind]: string;
constructor(name: T['name'], length?: number);
}
export declare class GelReal<T extends ColumnBaseConfig<'number', 'GelReal'>> extends GelColumn<T> {
static readonly [entityKind]: string;
constructor(table: AnyGelTable<{
name: T['tableName'];
}>, config: GelRealBuilder<T>['config']);
getSQLType(): string;
}
export declare function real(): GelRealBuilderInitial<''>;
export declare function real<TName extends string>(name: TName): GelRealBuilderInitial<TName>;