SearchQueryConfig
Unofficial
Configuration for creating a search query.
Import:
import type { SearchQueryConfig } from '@obsidian-typings/obsidian-catalyst-latest';Signature:
export interface SearchQueryConfigProperties
| Property | Type | Description | |
|---|---|---|---|
| caseSensitive? | boolean | Whether the search is case sensitive. | |
| literal? | boolean | Whether the search string is treated as a literal. | |
| regexp? | boolean | Whether the search string is a regular expression. | |
| replace? | string | The replacement string. | |
| search | string | The search string. | |
| wholeWord? | boolean | Whether the search matches whole words only. |