Fix API indentation

This commit is contained in:
Daniel Imms
2022-03-21 15:51:51 -07:00
parent 7f131aa19a
commit 7a70db709c
+12 -12
View File
@@ -55,19 +55,19 @@ declare module 'xterm-addon-search' {
* @param term The search term.
* @param searchOptions The options for the search.
*/
public findNext(term: string, searchOptions?: ISearchOptions): boolean;
public findNext(term: string, searchOptions?: ISearchOptions): boolean;
/**
* Search backwards for the previous result that matches the search term and
* options.
* @param term The search term.
* @param searchOptions The options for the search.
*/
public findPrevious(term: string, searchOptions?: ISearchOptions): boolean;
/**
* Search backwards for the previous result that matches the search term and
* options.
* @param term The search term.
* @param searchOptions The options for the search.
*/
public findPrevious(term: string, searchOptions?: ISearchOptions): boolean;
/**
* Clears the decorations and selection
*/
public clearDecorations(): void;
/**
* Clears the decorations and selection
*/
public clearDecorations(): void;
}
}