mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
16 lines
269 B
TypeScript
16 lines
269 B
TypeScript
import { BeerPost } from '@prisma/client';
|
|
|
|
type BeerRecommendationQueryResult = BeerPost & {
|
|
brewery: {
|
|
id: string;
|
|
name: string;
|
|
};
|
|
beerImages: {
|
|
id: string;
|
|
alt: string;
|
|
url: string;
|
|
}[];
|
|
};
|
|
|
|
export default BeerRecommendationQueryResult;
|