UNPKG

271 BTypeScriptView Raw
1import "../..";
2import "./searchcursor";
3
4export interface SearchAnnotation {
5 clear(): void;
6}
7
8declare module "../../" {
9 interface Editor {
10 showMatchesOnScrollbar(query: string | RegExp, caseFold?: boolean, className?: string): SearchAnnotation;
11 }
12}