mirror of
https://github.com/DerTyp7/osm-routing-angular.git
synced 2025-10-30 04:47:09 +01:00
9 lines
124 B
TypeScript
9 lines
124 B
TypeScript
export interface SearchWay {
|
|
id: number;
|
|
name: string;
|
|
}
|
|
|
|
export interface SearchResponse {
|
|
ways: Array<SearchWay>;
|
|
}
|