mirror of
https://github.com/FoggedLens/deflock.git
synced 2026-03-07 18:20:55 +00:00
15 lines
246 B
TypeScript
15 lines
246 B
TypeScript
export interface ALPR {
|
|
id: string;
|
|
lat: number;
|
|
lon: number;
|
|
tags: Record<string, string>;
|
|
type: string;
|
|
};
|
|
|
|
export interface WikidataItem {
|
|
name?: string;
|
|
nickname: string;
|
|
wikidata?: string;
|
|
exampleImage: string|undefined;
|
|
}
|