mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-27 20:13:32 +01:00
changes for #81574
This commit is contained in:
@@ -443,7 +443,7 @@ export interface DOMEvent {
|
||||
}
|
||||
|
||||
const MINIMUM_TIME_MS = 16;
|
||||
const DEFAULT_EVENT_MERGER: IEventMerger<DOMEvent, DOMEvent> = function (lastEvent: DOMEvent, currentEvent: DOMEvent) {
|
||||
const DEFAULT_EVENT_MERGER: IEventMerger<DOMEvent, DOMEvent> = function (lastEvent: DOMEvent | null, currentEvent: DOMEvent) {
|
||||
return currentEvent;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user