DIR : /home/kozerus/public_html/cropex/node/node_modules/drizzle-orm/pg-core/columns/jsonb.d.ts
/home/kozerus/public_html/cropex/node/node_modules/drizzle-orm/pg-core/columns
import type { ColumnBuilderBaseConfig } from "../../column-builder.js";
import type { ColumnBaseConfig } from "../../column.js";
import { entityKind } from "../../entity.js";
import type { AnyPgTable } from "../table.js";
import { PgColumn, PgColumnBuilder } from "./common.js";
export type PgJsonbBuilderInitial<TName extends string> = PgJsonbBuilder<{
name: TName;
dataType: 'json';
columnType: 'PgJsonb';
data: unknown;
driverParam: unknown;
enumValues: undefined;
}>;
export declare class PgJsonbBuilder<T extends ColumnBuilderBaseConfig<'json', 'PgJsonb'>> extends PgColumnBuilder<T> {
static readonly [entityKind]: string;
constructor(name: T['name']);
}
export declare class PgJsonb<T extends ColumnBaseConfig<'json', 'PgJsonb'>> extends PgColumn<T> {
static readonly [entityKind]: string;
constructor(table: AnyPgTable<{
name: T['tableName'];
}>, config: PgJsonbBuilder<T>['config']);
getSQLType(): string;
mapToDriverValue(value: T['data']): string;
mapFromDriverValue(value: T['data'] | string): T['data'];
}
export declare function jsonb(): PgJsonbBuilderInitial<''>;
export declare function jsonb<TName extends string>(name: TName): PgJsonbBuilderInitial<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