Variable GeoJSONFeatureConst
GeoJSONFeature: TObject<
{
geometry: TUnion<
[
TObject<{ coordinates: TArray<TNumber>; type: TLiteral<"Point"> }>,
TObject<
{
coordinates: TArray<TArray<TNumber>>;
type: TLiteral<"LineString">;
},
>,
TObject<
{
coordinates: TArray<TArray<TArray<TNumber>>>;
type: TLiteral<"Polygon">;
},
>,
],
>;
id: TOptional<TString>;
properties: TRecord<TString, TUnknown>;
type: TLiteral<"Feature">;
},
> = ...