Skip to content

Commit

Permalink
Fix wrong baseUrl imports
Browse files Browse the repository at this point in the history
  • Loading branch information
NotNite committed Oct 9, 2024
1 parent dc186f0 commit 749709f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion packages/core-extensions/src/moonbase/types.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { DetectedExtension, ExtensionManifest } from "types/src";
import { DetectedExtension, ExtensionManifest } from "@moonlight-mod/types";

export type MoonbaseNatives = {
checkForMoonlightUpdate(): Promise<string | null>;
Expand Down
2 changes: 1 addition & 1 deletion packages/core-extensions/src/noHideToken/index.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { Patch } from "types/src";
import { Patch } from "@moonlight-mod/types";

export const patches: Patch[] = [
{
Expand Down
2 changes: 1 addition & 1 deletion packages/core/src/fs.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { MoonlightFS } from "types/src";
import { MoonlightFS } from "@moonlight-mod/types";
import requireImport from "./util/import";

export default function getFS(): MoonlightFS {
Expand Down

0 comments on commit 749709f

Please sign in to comment.