From 0b8f151bd0458340b7779a64884c97754c3cedb8 Mon Sep 17 00:00:00 2001 From: Eric Amodio Date: Mon, 7 Feb 2022 16:55:27 -0500 Subject: [PATCH] Changes to type only imports where possible --- src/git/gitUri.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/git/gitUri.ts b/src/git/gitUri.ts index 687e860..fd9e9a8 100644 --- a/src/git/gitUri.ts +++ b/src/git/gitUri.ts @@ -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;