mirror of
https://github.com/pawelmalak/flame.git
synced 2026-03-12 07:04:45 +08:00
Bookmarks view with grid + redux actions
This commit is contained in:
11
client/src/interfaces/Category.ts
Normal file
11
client/src/interfaces/Category.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { Model, Bookmark } from '.';
|
||||
|
||||
export interface Category extends Model {
|
||||
name: string;
|
||||
isPinned: boolean;
|
||||
bookmarks: Bookmark[];
|
||||
}
|
||||
|
||||
export interface NewCategory {
|
||||
name: string;
|
||||
}
|
||||
Reference in New Issue
Block a user