Skip to content

UrlBookmarkItem

Unofficial

Bookmark item representing a bookmarked URL.

Import:

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

Signature:

export interface UrlBookmarkItem extends BookmarkItem

Extends: BookmarkItem

Properties

Property Type Description
ctime number The creation time of the bookmark item.
(Inherited from BookmarkItem)
items? BookmarkItem[] The items of the bookmark item.
(Inherited from BookmarkItem)
path? string The path of the bookmark item.
(Inherited from BookmarkItem)
query? string The query of the bookmark item.
(Inherited from BookmarkItem)
subpath? string The subpath of the bookmark item.
(Inherited from BookmarkItem)
title string Display title of this URL bookmark.
type 'url' Discriminator indicating this is a URL bookmark.
url string The bookmarked URL.
url? string The URL of the bookmark item.
(Inherited from BookmarkItem)