2026-03-22 17:20:46 +00:00
|
|
|
export interface Address {
|
|
|
|
|
locality: string;
|
|
|
|
|
number: string;
|
|
|
|
|
street: string;
|
|
|
|
|
}
|
|
|
|
|
|
2026-03-22 18:27:13 +00:00
|
|
|
export interface Communication {
|
2026-03-22 04:08:16 +00:00
|
|
|
created: string;
|
2026-03-22 18:27:13 +00:00
|
|
|
id: string;
|
|
|
|
|
public_report: PublicReport | null;
|
2026-03-22 04:08:16 +00:00
|
|
|
type: string;
|
|
|
|
|
}
|
2026-03-24 09:36:20 -07:00
|
|
|
export interface Point {
|
|
|
|
|
lat: Number;
|
|
|
|
|
lng: Number;
|
|
|
|
|
}
|
|
|
|
|
export interface Bounds {
|
|
|
|
|
min: Point;
|
|
|
|
|
max: Point;
|
|
|
|
|
}
|
|
|
|
|
export interface Marker {
|
|
|
|
|
color: string;
|
|
|
|
|
draggable: boolean;
|
|
|
|
|
id: string;
|
|
|
|
|
location: Point;
|
|
|
|
|
}
|
2026-03-22 04:08:16 +00:00
|
|
|
|
2026-03-22 18:27:13 +00:00
|
|
|
export interface PublicReport {
|
2026-03-22 04:08:16 +00:00
|
|
|
created: string;
|
|
|
|
|
type: string;
|
|
|
|
|
}
|
2026-03-22 18:27:13 +00:00
|
|
|
|
|
|
|
|
export interface Signal {}
|