mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-07-23 07:09:41 +02:00
fix failing build
This commit is contained in:
parent
bde885dc84
commit
625dbcdea5
7 changed files with 16 additions and 21 deletions
|
@ -1,4 +1,5 @@
|
|||
import { BaseCRUDAPI } from "./_base";
|
||||
import { Recipe } from "~/types/api-types/recipe";
|
||||
|
||||
const prefix = "/api";
|
||||
|
||||
|
@ -6,6 +7,7 @@ export interface Category {
|
|||
name: string;
|
||||
id: number;
|
||||
slug: string;
|
||||
recipes?: Recipe[];
|
||||
}
|
||||
|
||||
export interface CreateCategory {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue