Skip to content

Commit

Permalink
chore: prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
samarmeena committed Nov 6, 2023
1 parent 520bec7 commit a387475
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,15 @@ export const api = axios.create({
});

export function getMetar(
params: MetarParams
params: MetarParams,
): Promise<AxiosResponse<MetarResponse[]>> {
return api.get<MetarResponse[]>("/metar.php", {
params,
});
}

export function getTaf(
params: TafParams
params: TafParams,
): Promise<AxiosResponse<TafResponse[]>> {
return api.get<TafResponse[]>("/metar.php", {
params,
Expand Down

0 comments on commit a387475

Please sign in to comment.