Skip to content

Commit

Permalink
fix import
Browse files Browse the repository at this point in the history
  • Loading branch information
NikhilNarayana committed Sep 29, 2023
1 parent dca9163 commit d275baf
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions src/dolphin/playkey.ts
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
import type { PlayKey } from "@dolphin/types";
import type { DolphinInstallation, PlayKey } from "@dolphin/types";
import * as fs from "fs-extra";
import os from "os";
import path from "path";
import { fileExists } from "utils/fileExists";

import type { DolphinInstallation } from "./install/installation";

export async function writePlayKeyFile(installation: DolphinInstallation, playKey: PlayKey): Promise<void> {
const keyPath = await findPlayKey(installation);
const contents = JSON.stringify(playKey, null, 2);
Expand Down

0 comments on commit d275baf

Please sign in to comment.