DIR : /home/kozerus/public_html/cropex/node/node_modules/drizzle-orm/gel-core/columns/timestamptz.d.cts
/home/kozerus/public_html/cropex/node/node_modules/drizzle-orm/gel-core/columns
import type { ColumnBuilderBaseConfig } from "../../column-builder.cjs";
import type { ColumnBaseConfig } from "../../column.cjs";
import { entityKind } from "../../entity.cjs";
import type { AnyGelTable } from "../table.cjs";
import { GelColumn } from "./common.cjs";
import { GelLocalDateColumnBaseBuilder } from "./date.common.cjs";
export type GelTimestampTzBuilderInitial<TName extends string> = GelTimestampTzBuilder<{
name: TName;
dataType: 'date';
columnType: 'GelTimestampTz';
data: Date;
driverParam: Date;
enumValues: undefined;
}>;
export declare class GelTimestampTzBuilder<T extends ColumnBuilderBaseConfig<'date', 'GelTimestampTz'>> extends GelLocalDateColumnBaseBuilder<T> {
static readonly [entityKind]: string;
constructor(name: T['name']);
}
export declare class GelTimestampTz<T extends ColumnBaseConfig<'date', 'GelTimestampTz'>> extends GelColumn<T> {
static readonly [entityKind]: string;
constructor(table: AnyGelTable<{
name: T['tableName'];
}>, config: GelTimestampTzBuilder<T>['config']);
getSQLType(): string;
}
export declare function timestamptz(): GelTimestampTzBuilderInitial<''>;
export declare function timestamptz<TName extends string>(name: TName): GelTimestampTzBuilderInitial<TName>;
//
koh5_pano
Drag mouse to navigate.
Navigation
- Left/Right Mouse drag: Changes camera heading.
- Up/Sown Mouse drag: Changes camera pitch.
- Scroll wheel: Changes camera field of view.
- I-Key: Displays Info panel with canvas size, image size and FPS.
17.Aug.2010, Martin Wengenmayer