this repo has no description

Retain localStorage (closes #133)

Changed files
+2
packages
types
web-preload
src
+1
packages/types/src/globals.ts
···
registerPatch: (patch: IdentifiedPatch) => void;
registerWebpackModule: (module: IdentifiedWebpackModule) => void;
};
+
localStorage: Storage;
version: string;
branch: MoonlightBranch;
+1
packages/web-preload/src/index.ts
···
registerPatch,
registerWebpackModule
},
+
localStorage: window.localStorage,
version: MOONLIGHT_VERSION,
branch: MOONLIGHT_BRANCH as MoonlightBranch,