geoimport
    Preparing search index...

    Type Alias FieldObject

    type FieldObject = {
        name: string;
        nullable: boolean;
        precision?: number;
        type:
            | "Integer"
            | "Integer64"
            | "Real"
            | "String"
            | "Date"
            | "Time"
            | "DateTime"
            | "Binary"
            | "IntegerList"
            | "Integer64List"
            | "RealList"
            | "StringList";
        uniqueConstraint: boolean;
        width?: number;
    }
    Index

    Properties

    name: string
    nullable: boolean
    precision?: number
    type:
        | "Integer"
        | "Integer64"
        | "Real"
        | "String"
        | "Date"
        | "Time"
        | "DateTime"
        | "Binary"
        | "IntegerList"
        | "Integer64List"
        | "RealList"
        | "StringList"
    uniqueConstraint: boolean
    width?: number