Skip to content

SearchQueryConfig

Unofficial

Configuration for creating a search query.

Import:

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

Signature:

export interface SearchQueryConfig

Properties

PropertyTypeDescription
caseSensitive?booleanWhether the search is case sensitive.
literal?booleanWhether the search string is treated as a literal.
regexp?booleanWhether the search string is a regular expression.
replace?stringThe replacement string.
searchstringThe search string.
wholeWord?booleanWhether the search matches whole words only.