Skip to content

Commit 0cc1c5e

Browse files
committed
refactor: move IDisposable to common
1 parent b81a413 commit 0cc1c5e

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed
File renamed without changes.

packages/extension/src/manager/contexts-states-dispatcher.spec.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
import { beforeAll, beforeEach, expect, test, vi } from 'vitest';
2020

21-
import type { IDisposable } from '/@/types/disposable.js';
21+
import type { IDisposable } from '/@common/types/disposable.js';
2222
import type { ContextPermission } from '/@common/model/kubernetes-contexts-permissions.js';
2323

2424
import type { ContextHealthState } from './context-health-checker.js';

packages/extension/src/types/emitter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818

1919
/* eslint-disable @typescript-eslint/no-unsafe-function-type */
2020

21-
import type { IDisposable } from './disposable.js';
21+
import type { IDisposable } from '/@common/types/disposable.js';
2222

2323
export type DisposableGroup = { push(disposable: IDisposable): void } | { add(disposable: IDisposable): void };
2424

0 commit comments

Comments
 (0)