Interface ILocalDataProviderOptions

interface ILocalDataProviderOptions {
    filterGlobally: boolean;
    jumpToSearchResult: boolean;
    stringTopNCount: number | readonly string[];
    taskExecutor: "direct" | "scheduled";
}

Hierarchy

  • ARenderTaskOptions
    • ILocalDataProviderOptions

Properties

filterGlobally: boolean

whether the filter should be applied to all rankings regardless where they are default: false

jumpToSearchResult: boolean

jump to search results such that they are visible default: false

stringTopNCount: number | readonly string[]
taskExecutor: "direct" | "scheduled"

specify the task executor to use direct = no delay, scheduled = run when idle