fix failing build

This commit is contained in:
hay-kot 2021-08-08 21:15:20 -08:00
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 {