Skip to content

Commit af1f613

Browse files
committed
Use type-only imports
1 parent 5026833 commit af1f613

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

src/overlay/caching.test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import * as sinon from "sinon";
77

88
import * as actionsUtil from "../actions-util";
99
import * as apiClient from "../api-client";
10-
import { ResolveDatabaseOutput } from "../codeql";
10+
import { type ResolveDatabaseOutput } from "../codeql";
1111
import * as gitUtils from "../git-utils";
1212
import { BuiltInLanguage } from "../languages";
1313
import { getRunnerLogger } from "../logging";

src/overlay/caching.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ import { createCacheKeyHash } from "../caching-utils";
1313
import { type CodeQL } from "../codeql";
1414
import { type Config } from "../config-utils";
1515
import { getCommitOid } from "../git-utils";
16-
import { Language, parseBuiltInLanguage } from "../languages";
17-
import { Logger, withGroupAsync } from "../logging";
16+
import { type Language, parseBuiltInLanguage } from "../languages";
17+
import { type Logger, withGroupAsync } from "../logging";
1818
import {
1919
CleanupLevel,
2020
getBaseDatabaseOidsFilePath,

0 commit comments

Comments
 (0)