TenantAtlas/apps/platform/.pnpm-store/v10/files/2d/1142ea235d56bc01cc3327f9280aabdd2a664d917bafb363a2de8eedd4bb915e8e6d08caf9f10db79e5b5fb10e069fc86ff0438e1e0b60fd0992a2e351936f
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

57 lines
1.9 KiB
Plaintext

import { bigint } from "./bigint.cjs";
import { binary } from "./binary.cjs";
import { boolean } from "./boolean.cjs";
import { char } from "./char.cjs";
import { customType } from "./custom.cjs";
import { date } from "./date.cjs";
import { datetime } from "./datetime.cjs";
import { decimal } from "./decimal.cjs";
import { double } from "./double.cjs";
import { singlestoreEnum } from "./enum.cjs";
import { float } from "./float.cjs";
import { int } from "./int.cjs";
import { json } from "./json.cjs";
import { mediumint } from "./mediumint.cjs";
import { real } from "./real.cjs";
import { serial } from "./serial.cjs";
import { smallint } from "./smallint.cjs";
import { longtext, mediumtext, text, tinytext } from "./text.cjs";
import { time } from "./time.cjs";
import { timestamp } from "./timestamp.cjs";
import { tinyint } from "./tinyint.cjs";
import { varbinary } from "./varbinary.cjs";
import { varchar } from "./varchar.cjs";
import { vector } from "./vector.cjs";
import { year } from "./year.cjs";
export declare function getSingleStoreColumnBuilders(): {
bigint: typeof bigint;
binary: typeof binary;
boolean: typeof boolean;
char: typeof char;
customType: typeof customType;
date: typeof date;
datetime: typeof datetime;
decimal: typeof decimal;
double: typeof double;
singlestoreEnum: typeof singlestoreEnum;
float: typeof float;
int: typeof int;
json: typeof json;
mediumint: typeof mediumint;
real: typeof real;
serial: typeof serial;
smallint: typeof smallint;
longtext: typeof longtext;
mediumtext: typeof mediumtext;
text: typeof text;
tinytext: typeof tinytext;
time: typeof time;
timestamp: typeof timestamp;
tinyint: typeof tinyint;
varbinary: typeof varbinary;
varchar: typeof varchar;
vector: typeof vector;
year: typeof year;
};
export type SingleStoreColumnBuilders = ReturnType<typeof getSingleStoreColumnBuilders>;