Type alias FullPropertyDefinition

FullPropertyDefinition: {
    columnName?: string;
    columnType?: string;
    default?: unknown;
    itemType?: DataType;
    model?: string;
    primaryKey?: boolean;
    required?: boolean;
    transform?: PropertyTransformOptions;
    type: DataType;
    validate?: PropertyValidateOptions;
}

Full property definition.

Type declaration

Generated using TypeDoc