mirror of
				https://github.com/mealie-recipes/mealie.git
				synced 2025-10-31 10:13:32 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			431 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			431 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
| import { BaseCRUDAPI } from "../_base";
 | |
| 
 | |
| const prefix = "/api";
 | |
| 
 | |
| export interface CreateFood {
 | |
|   name: string;
 | |
|   description: string;
 | |
| }
 | |
| 
 | |
| export interface Food extends CreateFood {
 | |
|   id: number;
 | |
| }
 | |
| 
 | |
| const routes = {
 | |
|   food: `${prefix}/foods`,
 | |
|   foodsFood: (tag: string) => `${prefix}/foods/${tag}`,
 | |
| };
 | |
| 
 | |
| export class FoodAPI extends BaseCRUDAPI<Food, CreateFood> {
 | |
|   baseRoute: string = routes.food;
 | |
|   itemRoute = routes.foodsFood;
 | |
| }
 |