Skip to content

Instantly share code, notes, and snippets.

@eamonnboyle
Created February 23, 2021 10:23
Show Gist options
  • Save eamonnboyle/1c366a9e17eefbc7dba1bd6bdc3b27b7 to your computer and use it in GitHub Desktop.
Save eamonnboyle/1c366a9e17eefbc7dba1bd6bdc3b27b7 to your computer and use it in GitHub Desktop.
Weather App Tutorial - Weather Model
export interface Coordinates {
lon: number;
lat: number;
}
export interface WeatherLocation {
coord: Coordinates;
id: number;
name: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment