TenantAtlas/apps/platform/.pnpm-store/v10/files/9b/c184ca621ee28711f374e66dc1a589bfe7108ead982ec18c4f856a5b462c378faffb5a52fbd4067436247be2cc5f790b920e610aae0bb80dddf20b4dc4a426
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.js";
import { binary } from "./binary.js";
import { boolean } from "./boolean.js";
import { char } from "./char.js";
import { customType } from "./custom.js";
import { date } from "./date.js";
import { datetime } from "./datetime.js";
import { decimal } from "./decimal.js";
import { double } from "./double.js";
import { singlestoreEnum } from "./enum.js";
import { float } from "./float.js";
import { int } from "./int.js";
import { json } from "./json.js";
import { mediumint } from "./mediumint.js";
import { real } from "./real.js";
import { serial } from "./serial.js";
import { smallint } from "./smallint.js";
import { longtext, mediumtext, text, tinytext } from "./text.js";
import { time } from "./time.js";
import { timestamp } from "./timestamp.js";
import { tinyint } from "./tinyint.js";
import { varbinary } from "./varbinary.js";
import { varchar } from "./varchar.js";
import { vector } from "./vector.js";
import { year } from "./year.js";
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>;