style: run prettier
All checks were successful
TrafficCue Server CI / check (push) Successful in 19s
All checks were successful
TrafficCue Server CI / check (push) Successful in 19s
This commit is contained in:
@ -10,4 +10,4 @@ jobs:
|
||||
- name: Install dependencies
|
||||
run: bun i
|
||||
- run: bunx eslint
|
||||
- run: bunx prettier --check .
|
||||
- run: bunx prettier --check .
|
||||
|
@ -6,7 +6,7 @@ import z from "zod";
|
||||
|
||||
export interface OverpassResult {
|
||||
elements: OverpassElement[];
|
||||
};
|
||||
}
|
||||
|
||||
export interface OverpassElement {
|
||||
type: "node" | "way" | "relation";
|
||||
@ -19,7 +19,7 @@ export interface OverpassElement {
|
||||
lat: number; // Only for relations
|
||||
lon: number; // Only for relations
|
||||
};
|
||||
};
|
||||
}
|
||||
|
||||
const OVERPASS_SERVER = "https://overpass-api.de/api/interpreter";
|
||||
|
||||
|
Reference in New Issue
Block a user