Files
klz-cables.com/.pnpm-store/v10/files/f8/faf8b36d364a0a84a53e215b6451c16098bcb1a3d9da7f6917939f6ac569734df6cf7feb6427112db6d3575c42b3145ebf174af346a81b445b196c3869f84c
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01: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>;