mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 10:42:08 +00:00
28 lines
384 B
TypeScript
28 lines
384 B
TypeScript
export default interface BeerPostQueryResult {
|
|
id: string;
|
|
name: string;
|
|
brewery: {
|
|
id: string;
|
|
name: string;
|
|
};
|
|
description: string;
|
|
beerImages: {
|
|
url: string;
|
|
id: string;
|
|
alt: string;
|
|
}[];
|
|
|
|
ibu: number;
|
|
abv: number;
|
|
type: {
|
|
id: string;
|
|
name: string;
|
|
};
|
|
postedBy: {
|
|
id: string;
|
|
username: string;
|
|
};
|
|
|
|
createdAt: Date;
|
|
}
|