SearchBookmarkItem
Unofficial
Bookmark item representing a saved search query.
Import:
import type { SearchBookmarkItem } from '@obsidian-typings/obsidian-catalyst-latest';Signature:
export interface SearchBookmarkItem 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 | The path of the bookmark item. (Inherited from BookmarkItem) | |
| query | string | The saved search query string. | |
| query? | string | The query of the bookmark item. (Inherited from BookmarkItem) | |
| subpath? | string | The subpath of the bookmark item. (Inherited from BookmarkItem) | |
| title | string | The title of the bookmark item. (Inherited from BookmarkItem) | |
| type | 'search' | Discriminator indicating this is a search bookmark. | |
| url? | string | The URL of the bookmark item. (Inherited from BookmarkItem) |