mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-19 11:39:36 +02:00
16 lines
326 B
TypeScript
16 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(),
|
|
};
|