1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

Fix code style

Signed-off-by: Iku-turso <mikko.aspiala@gmail.com>
This commit is contained in:
Iku-turso 2022-03-24 11:06:35 +02:00 committed by Janne Savolainen
parent 06b8384fa1
commit 480bad870f
No known key found for this signature in database
GPG Key ID: 8C6CFB2FFFE8F68A

View File

@ -15,8 +15,8 @@ import type { JsonObject, JsonValue } from "type-fest";
import type { Logger } from "../../../common/logger";
interface Dependencies {
storage: { initialized: boolean, loaded: boolean, data: Record<string, any> };
logger: Logger
storage: { initialized: boolean; loaded: boolean; data: Record<string, any> };
logger: Logger;
directoryForLensLocalStorage: string;
readJsonFile: (filePath: string) => Promise<JsonValue>;
writeJsonFile: (filePath: string, contentObject: JsonObject) => Promise<void>;