mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-27 14:59:37 +02:00
11 lines
193 B
TypeScript
11 lines
193 B
TypeScript
|
import { Model, Bookmark } from '.';
|
||
|
|
||
|
export interface Category extends Model {
|
||
|
name: string;
|
||
|
isPinned: boolean;
|
||
|
bookmarks: Bookmark[];
|
||
|
}
|
||
|
|
||
|
export interface NewCategory {
|
||
|
name: string;
|
||
|
}
|