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
25 lines
1.2 KiB
Plaintext
25 lines
1.2 KiB
Plaintext
import type { LocalDate } from 'gel';
|
|
import type { ColumnBuilderBaseConfig } from "../../column-builder.js";
|
|
import type { ColumnBaseConfig } from "../../column.js";
|
|
import { entityKind } from "../../entity.js";
|
|
import { GelColumn } from "./common.js";
|
|
import { GelLocalDateColumnBaseBuilder } from "./date.common.js";
|
|
export type GelLocalDateStringBuilderInitial<TName extends string> = GelLocalDateStringBuilder<{
|
|
name: TName;
|
|
dataType: 'localDate';
|
|
columnType: 'GelLocalDateString';
|
|
data: LocalDate;
|
|
driverParam: LocalDate;
|
|
enumValues: undefined;
|
|
}>;
|
|
export declare class GelLocalDateStringBuilder<T extends ColumnBuilderBaseConfig<'localDate', 'GelLocalDateString'>> extends GelLocalDateColumnBaseBuilder<T> {
|
|
static readonly [entityKind]: string;
|
|
constructor(name: T['name']);
|
|
}
|
|
export declare class GelLocalDateString<T extends ColumnBaseConfig<'localDate', 'GelLocalDateString'>> extends GelColumn<T> {
|
|
static readonly [entityKind]: string;
|
|
getSQLType(): string;
|
|
}
|
|
export declare function localDate(): GelLocalDateStringBuilderInitial<''>;
|
|
export declare function localDate<TName extends string>(name: TName): GelLocalDateStringBuilderInitial<TName>;
|