mirror of
https://github.com/ckaczor/vscode-gitlens.git
synced 2026-02-05 09:45:40 -05:00
Fixes typescript syntax error
This commit is contained in:
@@ -52,7 +52,7 @@ async function _showQuickPickProgress(message: string, cancellation: Cancellatio
|
||||
}
|
||||
|
||||
function _getInfiniteCancellablePromise(cancellation: CancellationTokenSource) {
|
||||
return new Promise((resolve, reject) => {
|
||||
return new Promise<QuickPickItem[]>((resolve, reject) => {
|
||||
const disposable = cancellation.token.onCancellationRequested(() => {
|
||||
disposable.dispose();
|
||||
resolve([]);
|
||||
|
||||
Reference in New Issue
Block a user