mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-20 12:09:36 +02:00
17 lines
326 B
TypeScript
17 lines
326 B
TypeScript
|
import { Category, NewCategory } from '../../interfaces';
|
||
|
|
||
|
export const newCategoryTemplate: NewCategory = {
|
||
|
name: '',
|
||
|
isPublic: true,
|
||
|
};
|
||
|
|
||
|
export const categoryTemplate: Category = {
|
||
|
...newCategoryTemplate,
|
||
|
id: -1,
|
||
|
isPinned: false,
|
||
|
orderId: 0,
|
||
|
bookmarks: [],
|
||
|
createdAt: new Date(),
|
||
|
updatedAt: new Date(),
|
||
|
};
|