Skip to content

UrlBookmarkItem

Unofficial

Bookmark item representing a bookmarked URL.

Import:

import type { UrlBookmarkItem } from '@obsidian-typings/obsidian-catalyst-latest';

Signature:

export interface UrlBookmarkItem extends BookmarkItem

Extends: BookmarkItem

Properties

PropertyTypeDescription
ctimenumberThe creation time of the bookmark item.
(Inherited from BookmarkItem)
items?BookmarkItem[]The items of the bookmark item.
(Inherited from BookmarkItem)
path?stringThe path of the bookmark item.
(Inherited from BookmarkItem)
query?stringThe query of the bookmark item.
(Inherited from BookmarkItem)
subpath?stringThe subpath of the bookmark item.
(Inherited from BookmarkItem)
titlestringDisplay title of this URL bookmark.
type'url'Discriminator indicating this is a URL bookmark.
urlstringThe bookmarked URL.
url?stringThe URL of the bookmark item.
(Inherited from BookmarkItem)