mirror of
https://github.com/pawelmalak/flame.git
synced 2026-02-28 09:23:12 +08:00
18 lines
331 B
TypeScript
18 lines
331 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(),
|
|
orderId: 0,
|
|
};
|