diff options
Diffstat (limited to 'cli/js/ops')
-rw-r--r-- | cli/js/ops/errors.ts | 2 | ||||
-rw-r--r-- | cli/js/ops/fs/seek.ts | 2 | ||||
-rw-r--r-- | cli/js/ops/permissions.ts | 2 | ||||
-rw-r--r-- | cli/js/ops/runtime_compiler.ts | 2 |
4 files changed, 4 insertions, 4 deletions
diff --git a/cli/js/ops/errors.ts b/cli/js/ops/errors.ts index c6c26b8ba..002ca699e 100644 --- a/cli/js/ops/errors.ts +++ b/cli/js/ops/errors.ts @@ -1,6 +1,6 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. -import { DiagnosticItem } from "../diagnostics.ts"; +import type { DiagnosticItem } from "../diagnostics.ts"; import { sendSync } from "./dispatch_json.ts"; export function formatDiagnostics(items: DiagnosticItem[]): string { diff --git a/cli/js/ops/fs/seek.ts b/cli/js/ops/fs/seek.ts index 2e23e084b..8fd3964fd 100644 --- a/cli/js/ops/fs/seek.ts +++ b/cli/js/ops/fs/seek.ts @@ -1,7 +1,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { sendSync, sendAsync } from "../dispatch_json.ts"; -import { SeekMode } from "../../io.ts"; +import type { SeekMode } from "../../io.ts"; export function seekSync( rid: number, diff --git a/cli/js/ops/permissions.ts b/cli/js/ops/permissions.ts index dfe8c4834..74b9ba0f0 100644 --- a/cli/js/ops/permissions.ts +++ b/cli/js/ops/permissions.ts @@ -1,7 +1,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { sendSync } from "./dispatch_json.ts"; -import { PermissionState } from "../permissions.ts"; +import type { PermissionState } from "../permissions.ts"; interface PermissionRequest { name: string; diff --git a/cli/js/ops/runtime_compiler.ts b/cli/js/ops/runtime_compiler.ts index 5a89983ee..671585118 100644 --- a/cli/js/ops/runtime_compiler.ts +++ b/cli/js/ops/runtime_compiler.ts @@ -1,7 +1,7 @@ // Copyright 2018-2020 the Deno authors. All rights reserved. MIT license. import { sendAsync } from "./dispatch_json.ts"; -import { DiagnosticItem } from "../diagnostics.ts"; +import type { DiagnosticItem } from "../diagnostics.ts"; interface CompileRequest { rootName: string; |