Skip to content

Commit

Permalink
1.1.13
Browse files Browse the repository at this point in the history
  • Loading branch information
NotNite committed Jan 29, 2025
1 parent 368350f commit d717f7a
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 8 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@moonlight-mod/mappings",
"version": "1.1.12",
"version": "1.1.13",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
1 change: 1 addition & 0 deletions src/modules.ts
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,7 @@ import "./mappings/discord/utils/AvatarUtils";
import "./mappings/discord/utils/BigFlagUtils";
import "./mappings/discord/utils/ClipboardUtils";
import "./mappings/discord/utils/ColorUtils";
import "./mappings/discord/utils/ComponentDispatchUtils";
import "./mappings/discord/utils/FileUtils";
import "./mappings/discord/utils/FlagUtils";
import "./mappings/discord/utils/HTTPUtils";
Expand Down
12 changes: 5 additions & 7 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ import UUID from "./mappings/uuid/v4";

export type MappedModules = {
"chroma-js": ChromaJS;
"classnames": classnames;
classnames: classnames;
"dependency-graph": DependencyGraph;
"discord/Constants": Constants;
"discord/Dispatcher": DispatcherInstance;
Expand Down Expand Up @@ -118,13 +118,11 @@ export type MappedModules = {
"discord/utils/NativeUtils": NativeUtils;
"highlight.js": HighlightJS;
"highlight.js/lib/core": HighlightJSCore;
"lodash": lodash;
"murmurhash": murmurhash;
lodash: lodash;
murmurhash: murmurhash;
"platform.js": PlatformJS;
"react": React;
react: React;
"uuid/v4": UUID;
};

export declare function WebpackRequire<T extends keyof MappedModules>(
module: T
): MappedModules[T];
export declare function WebpackRequire<T extends keyof MappedModules>(module: T): MappedModules[T];

0 comments on commit d717f7a

Please sign in to comment.