blob: b4da509b3cdc2fd8f58ee8be9fa7c8f0b7d88691 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
export default class BookmarkRepository {
async create(
title: string, url: string
): Promise<browser.bookmarks.BookmarkTreeNode> {
let item = await browser.bookmarks.create({
type: 'bookmark',
title,
url,
});
if (!item) {
throw new Error('Could not create a bookmark');
}
return item;
}
}
|