Interface NotebookFindWidgetState

interface NotebookFindWidgetState {
    activeFilters: string[];
    currentMatch: number;
    expanded: boolean;
    matchCase: boolean;
    matches: NotebookEditorFindMatch[];
    regex: boolean;
    replace: string;
    search: string;
    wholeWord: boolean;
}

Properties

activeFilters: string[]
currentMatch: number
expanded: boolean
matchCase: boolean
regex: boolean
replace: string
search: string
wholeWord: boolean