Skip to content

ColumnOpts

@tsed/objection

Usage

typescript
import { ColumnOpts } from "@tsed/objection";

See /packages/orm/objection/src/types/domain/ColumnOpts.ts.

Overview

ts
interface ColumnOpts {
    columnType: "idColumn" | "string" | "number" | "boolean";
    options: any;
}

columnType

ts
columnType: "idColumn" | "string" | "number" | "boolean";

options

ts
options: any;

Released under the MIT License.