TenantAtlas/apps/platform/.pnpm-store/v10/files/f8/faf8b36d364a0a84a53e215b6451c16098bcb1a3d9da7f6917939f6ac569734df6cf7feb6427112db6d3575c42b3145ebf174af346a81b445b196c3869f84c
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.js";
import type { ColumnBaseConfig } from "../../column.js";
import { entityKind } from "../../entity.js";
import type { AnyGelTable } from "../table.js";
import { GelColumn, GelColumnBuilder } from "./common.js";
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>;