From fb7118ff1c8f0dcd61f15e51b193512283d83fa1 Mon Sep 17 00:00:00 2001 From: Kristóf Marussy Date: Sun, 9 Jan 2022 22:16:29 +0100 Subject: build: Add eslint-plugin-unicorn MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Kristóf Marussy --- packages/main/src/stores/Config.ts | 9 ++------- 1 file changed, 2 insertions(+), 7 deletions(-) (limited to 'packages/main/src/stores/Config.ts') diff --git a/packages/main/src/stores/Config.ts b/packages/main/src/stores/Config.ts index 06dbdeb..ca90c0c 100644 --- a/packages/main/src/stores/Config.ts +++ b/packages/main/src/stores/Config.ts @@ -18,12 +18,7 @@ * SPDX-License-Identifier: AGPL-3.0-only */ -import { - config as originalConfig, - ConfigSnapshotIn, - ConfigSnapshotOut, - ThemeSource, -} from '@sophie/shared'; +import { config as originalConfig, ThemeSource } from '@sophie/shared'; import { Instance } from 'mobx-state-tree'; export const config = originalConfig.actions((self) => ({ @@ -34,4 +29,4 @@ export const config = originalConfig.actions((self) => ({ export interface Config extends Instance {} -export type { ConfigSnapshotIn, ConfigSnapshotOut }; +export type { ConfigSnapshotIn, ConfigSnapshotOut } from '@sophie/shared'; -- cgit v1.2.3-54-g00ecf