FileBookmarkItem
Unofficial
Bookmark item representing a bookmarked file.
Import:
import type { FileBookmarkItem } from '@obsidian-typings/obsidian-catalyst-latest';Signature:
export interface FileBookmarkItem extends BookmarkItemExtends: 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 | Vault-relative path to the bookmarked file. | |
| path? | string | The path of the bookmark item. (Inherited from BookmarkItem) | |
| query? | string | The query of the bookmark item. (Inherited from BookmarkItem) | |
| subpath | string | Subpath within the file (e.g. heading or block reference). | |
| subpath? | string | The subpath of the bookmark item. (Inherited from BookmarkItem) | |
| title | string | The title of the bookmark item. (Inherited from BookmarkItem) | |
| type | 'file' | Discriminator indicating this is a file bookmark. | |
| url? | string | The URL of the bookmark item. (Inherited from BookmarkItem) |