26 lines
724 B
TypeScript
26 lines
724 B
TypeScript
export type TextFragment = {
|
|
_slug: string;
|
|
id?: string;
|
|
title?: string;
|
|
text?: string;
|
|
bulletPoints?: string[];
|
|
tags?: Array<{ _slug: string; name?: string } | string>;
|
|
};
|
|
|
|
export type WindArea = {
|
|
_slug: string;
|
|
gebiets_nr: string;
|
|
bezeichnung?: string;
|
|
status?: "rechtskraeftig" | "entwurf_2" | "entwurf_2_voraussichtlich" | "entwurf_3";
|
|
flaeche_ha?: number;
|
|
anlagen_geplant?: number;
|
|
hoehe_max_m?: number;
|
|
investor?: string;
|
|
gemeinden?: string[];
|
|
stellungnahme?: { _slug: string; slug?: string } | string | null;
|
|
stellungnahmeUrl?: string | null;
|
|
stellungnahme_kriterien?: Array<TextFragment | { _slug: string } | string> | null;
|
|
notizen?: string;
|
|
geometry?: GeoJSON.Geometry;
|
|
};
|