obsidian#Debouncer TypeScript Examples
The following examples show how to use
obsidian#Debouncer.
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example #1
Source File: modeHandler.ts From obsidian-switcher-plus with GNU General Public License v3.0 | 5 votes |
private debouncedGetSuggestions: Debouncer<[InputInfo, Chooser<AnySuggestion>]>;
Example #2
Source File: PumlView.ts From obsidian-plantuml with MIT License | 5 votes |
debounced: Debouncer<any>;
Example #3
Source File: debouncedProcessors.ts From obsidian-plantuml with MIT License | 5 votes |
debounceMap = new Map<string, Debouncer<[string, HTMLElement, MarkdownPostProcessorContext]>>();
Example #4
Source File: manager.ts From better-word-count with MIT License | 5 votes |
public debounceChange: Debouncer<[file: TFile, data: string]>;
Example #5
Source File: manager.ts From better-word-count with MIT License | 5 votes |
private deboucer: Debouncer<[text: string]>;