Change addWatcher listener to return void

This commit is contained in:
Robert 2024-02-07 14:50:00 +00:00
Родитель c906e76214
Коммит 1004f16b10
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -20,7 +20,7 @@ class WatcherCollection extends DisposableObject {
*/
public addWatcher(
pattern: GlobPattern,
listener: (e: Uri) => any,
listener: (e: Uri) => void,
thisArgs: any,
): void {
const watcher = workspace.createFileSystemWatcher(pattern);