1
0
Fork 0
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:
hay-kot 2021-08-08 21:15:20 -08:00
parent bde885dc84
commit 625dbcdea5
7 changed files with 16 additions and 21 deletions

View file

@ -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 {