mirror of
https://github.com/mealie-recipes/mealie.git
synced 2025-11-01 02:33:22 -04:00
fix failing build
This commit is contained in:
@@ -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 {
|
||||
|
||||
@@ -1,4 +1,5 @@
|
||||
import { BaseCRUDAPI } from "./_base";
|
||||
import { Recipe } from "~/types/api-types/admin";
|
||||
|
||||
const prefix = "/api";
|
||||
|
||||
@@ -6,6 +7,7 @@ export interface Tag {
|
||||
name: string;
|
||||
id: number;
|
||||
slug: string;
|
||||
recipes?: Recipe[];
|
||||
}
|
||||
|
||||
export interface CreateTag {
|
||||
|
||||
Reference in New Issue
Block a user