Interface NotebookEditorFindMatchOptions

interface NotebookEditorFindMatchOptions {
    activeFilters: string[];
    matchCase: boolean;
    regex: boolean;
    search: string;
    wholeWord: boolean;
}

Properties

activeFilters: string[]
matchCase: boolean
regex: boolean
search: string
wholeWord: boolean