Skip to content

Commit

Permalink
🎨 #11782
Browse files Browse the repository at this point in the history
  • Loading branch information
Vanessa219 committed Oct 23, 2024
1 parent c856c87 commit 19545f4
Showing 1 changed file with 11 additions and 11 deletions.
22 changes: 11 additions & 11 deletions app/src/types/config.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2007,20 +2007,20 @@ declare namespace Config {
* - `0`: No grouping
* - `1`: Group by document
*/
group: number;
hasReplace: boolean;
group?: number;
hasReplace?: boolean;
/**
* Readable path list
*/
hPath: string;
hPath?: string;
/**
* Search in the specified paths
*/
idPath: string[];
idPath?: string[];
/**
* Search content
*/
k: string;
k?: string;
/**
* Search scheme
* - `0`: Keyword (default)
Expand All @@ -2029,25 +2029,25 @@ declare namespace Config {
* - `3`: Regular expression
* @default 0
*/
method: number;
method?: number;
/**
* Custom name of the query condition group
*/
name?: string;
/**
* Current page number
*/
page: number;
page?: number;
/**
* Replace content
*/
r: string;
r?: string;
/**
* Whether to clear the search box after removing the currently used query condition group
* 移除后需记录搜索内容 https://github.com/siyuan-note/siyuan/issues/7745
*/
removed?: boolean;
replaceTypes: IUILayoutTabSearchConfigReplaceTypes;
replaceTypes?: IUILayoutTabSearchConfigReplaceTypes;
/**
* Search result sorting scheme
* - `0`: Block type (default)
Expand All @@ -2060,8 +2060,8 @@ declare namespace Config {
* - `7`: Descending by relevance
* @default 0
*/
sort: number;
types: IUILayoutTabSearchConfigTypes;
sort?: number;
types?: IUILayoutTabSearchConfigTypes;
}

/**
Expand Down

0 comments on commit 19545f4

Please sign in to comment.