Switch to standard imports (#169451)

This commit is contained in:
Matt Bierner
2022-12-16 15:22:53 -08:00
committed by GitHub
parent c1498b35dd
commit c390a331c5
3 changed files with 4 additions and 4 deletions

View File

@@ -7,7 +7,7 @@ import { TextDecoder } from 'util';
import { commands, env, ProgressLocation, Uri, window, workspace, QuickPickOptions, FileType, l10n } from 'vscode';
import { getOctokit } from './auth';
import { GitErrorCodes, PushErrorHandler, Remote, Repository } from './typings/git';
import path = require('path');
import * as path from 'path';
type Awaited<T> = T extends PromiseLike<infer U> ? Awaited<U> : T;