Skip to content

Commit

Permalink
Merge branch 'fix/3001-fix-lint-errors-in-internet-header' into renov…
Browse files Browse the repository at this point in the history
…ate/node-20.x
  • Loading branch information
oliverschuerch committed Apr 25, 2024
2 parents bd99a97 + 2396cd2 commit ab447ae
Showing 1 changed file with 9 additions and 8 deletions.
17 changes: 9 additions & 8 deletions packages/internet-header/src/models/geocode.model.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,15 @@ export interface GeocodeLocation {
bbox: [number, number, number, number];
}

export enum GeocodeResponseType {
Region = 'region',
City = 'city',
Zip = 'zip',
Locality = 'locality',
Address = 'address',
Poi = 'poi',
}
export const GeocodeResponseType = {
Region: 'region',
City: 'city',
Zip: 'zip',
Locality: 'locality',
Address: 'address',
Poi: 'poi',
} as const;
export type GeocodeResponseType = (typeof GeocodeResponseType)[keyof typeof GeocodeResponseType];

export interface ServiceTypesResponse {
ok: boolean;
Expand Down

0 comments on commit ab447ae

Please sign in to comment.