diff options
| author | Lukas Wirth <lukastw97@gmail.com> | 2023-08-12 08:25:51 +0200 |
|---|---|---|
| committer | Lukas Wirth <lukastw97@gmail.com> | 2023-08-15 11:39:53 +0200 |
| commit | e76d20e072cd25ca2df21ef51e973bf666f4c840 (patch) | |
| tree | a11fc842194b9c985c8f1531fe19d061e6a43728 /editors/code/src/util.ts | |
| parent | 33f9250d2139fa00038736515b9e22c51c419c01 (diff) | |
| download | rust-e76d20e072cd25ca2df21ef51e973bf666f4c840.tar.gz rust-e76d20e072cd25ca2df21ef51e973bf666f4c840.zip | |
Add status bar button to toggle check on save state
Diffstat (limited to 'editors/code/src/util.ts')
| -rw-r--r-- | editors/code/src/util.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/editors/code/src/util.ts b/editors/code/src/util.ts index e5394525772..1e83c281a13 100644 --- a/editors/code/src/util.ts +++ b/editors/code/src/util.ts @@ -2,7 +2,7 @@ import * as vscode from "vscode"; import { strict as nativeAssert } from "assert"; import { exec, type ExecOptions, spawnSync } from "child_process"; import { inspect } from "util"; -import { Env } from "./client"; +import type { Env } from "./client"; export function assert(condition: boolean, explanation: string): asserts condition { try { |
