Skip to content

Commit

Permalink
add catalog model
Browse files Browse the repository at this point in the history
  • Loading branch information
feloy committed Jan 18, 2024
1 parent 609258d commit 6d66dcb
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions packages/shared/src/models/ICatalog.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
import type { Category } from './ICategory';
import type { ModelInfo } from './IModelInfo';
import type { Recipe } from './IRecipe';

export interface Catalog {
recipes: Recipe[];
models: ModelInfo[];
categories: Category[];
}

0 comments on commit 6d66dcb

Please sign in to comment.