mirror of
https://github.com/pawelmalak/flame.git
synced 2025-07-30 08:09:35 +02:00
17 lines
317 B
TypeScript
17 lines
317 B
TypeScript
|
import { Bookmark, NewBookmark } from '../../interfaces';
|
||
|
|
||
|
export const newBookmarkTemplate: NewBookmark = {
|
||
|
name: '',
|
||
|
url: '',
|
||
|
categoryId: -1,
|
||
|
icon: '',
|
||
|
isPublic: true,
|
||
|
};
|
||
|
|
||
|
export const bookmarkTemplate: Bookmark = {
|
||
|
...newBookmarkTemplate,
|
||
|
id: -1,
|
||
|
createdAt: new Date(),
|
||
|
updatedAt: new Date(),
|
||
|
};
|