Skip to content

Instantly share code, notes, and snippets.

@charliejlevine
Created February 12, 2021 06:27
Show Gist options
  • Save charliejlevine/8ef427e44d775c19eeb5151e0ca521d3 to your computer and use it in GitHub Desktop.
Save charliejlevine/8ef427e44d775c19eeb5151e0ca521d3 to your computer and use it in GitHub Desktop.
export interface Brewery {
id: number;
name: string;
brewery_type: string;
street: string;
address_2: string;
address_3: string;
city: string;
state: string;
county_province: string;
postal_code: string;
country: string;
longitude: string;
latitude: string;
phone: string;
website_url: string;
updated_at: string;
created_at: string;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment