Browse Source

Changes to type only imports where possible

main
Eric Amodio 2 years ago
parent
commit
0b8f151bd0
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      src/git/gitUri.ts

+ 2
- 2
src/git/gitUri.ts View File

@ -4,13 +4,13 @@ import { UriComparer } from '../comparers';
import { Schemes } from '../constants';
import { Container } from '../container';
import { Logger } from '../logger';
import { GitHubAuthorityMetadata } from '../premium/remotehub';
import type { GitHubAuthorityMetadata } from '../premium/remotehub';
import { debug } from '../system/decorators/log';
import { memoize } from '../system/decorators/memoize';
import { formatPath } from '../system/formatPath';
import { basename, getBestPath, normalizePath, relativeDir, splitPath } from '../system/path';
// import { CharCode } from '../system/string';
import { RevisionUriData } from './gitProvider';
import type { RevisionUriData } from './gitProvider';
import { GitFile, GitRevision } from './models';
const slash = 47; //CharCode.Slash;

Loading…
Cancel
Save