aboutsummaryrefslogtreecommitdiffstats
path: root/packages/main/src/infrastructure/electron/types.ts
diff options
context:
space:
mode:
Diffstat (limited to 'packages/main/src/infrastructure/electron/types.ts')
-rw-r--r--packages/main/src/infrastructure/electron/types.ts4
1 files changed, 1 insertions, 3 deletions
diff --git a/packages/main/src/infrastructure/electron/types.ts b/packages/main/src/infrastructure/electron/types.ts
index 1321048..92ca9ad 100644
--- a/packages/main/src/infrastructure/electron/types.ts
+++ b/packages/main/src/infrastructure/electron/types.ts
@@ -18,8 +18,6 @@
18 * SPDX-License-Identifier: AGPL-3.0-only 18 * SPDX-License-Identifier: AGPL-3.0-only
19 */ 19 */
20 20
21import type { BrowserViewBounds } from '@sophie/shared';
22
23import type MainStore from '../../stores/MainStore'; 21import type MainStore from '../../stores/MainStore';
24import type Profile from '../../stores/Profile'; 22import type Profile from '../../stores/Profile';
25import type Service from '../../stores/Service'; 23import type Service from '../../stores/Service';
@@ -67,7 +65,7 @@ export interface ServiceView {
67 65
68 toggleDeveloperTools(): void; 66 toggleDeveloperTools(): void;
69 67
70 setBounds(bounds: BrowserViewBounds): void; 68 updateBounds(): void;
71 69
72 dispose(): void; 70 dispose(): void;
73} 71}