mirror of
https://github.com/aaronpo97/the-biergarten-app.git
synced 2026-02-16 20:13:49 +00:00
Add beer post, brewery post GET service and page
Add prettier, eslint config
This commit is contained in:
14
services/BeerPost/types/BeerPostQueryResult.ts
Normal file
14
services/BeerPost/types/BeerPostQueryResult.ts
Normal file
@@ -0,0 +1,14 @@
|
||||
export default interface BeerPostQueryResult {
|
||||
id: string;
|
||||
name: string;
|
||||
brewery: {
|
||||
id: string;
|
||||
name: string;
|
||||
};
|
||||
description: string;
|
||||
postedBy: {
|
||||
id: string;
|
||||
firstName: string;
|
||||
lastName: string;
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user