Type Alias GeospatialFeatureTypeProperty

GeospatialFeatureTypeProperty: {
    description?: string;
    optional?: boolean;
    type: Exclude<GeospatialPropertyType, GeometryPropertyType | "STRING">;
} | {
    description?: string;
    optional?: boolean;
    srid?: number;
    type: GeometryPropertyType;
} | {
    description?: string;
    optional?: boolean;
    size: number;
    type: "STRING";
}