interface GeospatialOutput {
    output?: {
        geometryFormat: GeometryType;
    } | {
        properties: Record<string, unknown>;
    };
}

Hierarchy (view full)

Properties

Properties

output?: {
    geometryFormat: GeometryType;
} | {
    properties: Record<string, unknown>;
}