Skip to content

FileBookmarkItem

Unofficial

Bookmark item representing a bookmarked file.

Import:

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

Signature:

export interface FileBookmarkItem 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)
pathstringVault-relative path to the bookmarked file.
path?stringThe path of the bookmark item.
(Inherited from BookmarkItem)
query?stringThe query of the bookmark item.
(Inherited from BookmarkItem)
subpathstringSubpath within the file (e.g. heading or block reference).
subpath?stringThe subpath of the bookmark item.
(Inherited from BookmarkItem)
titlestringThe title of the bookmark item.
(Inherited from BookmarkItem)
type'file'Discriminator indicating this is a file bookmark.
url?stringThe URL of the bookmark item.
(Inherited from BookmarkItem)