Skip to content

Commit

Permalink
1.1.7
Browse files Browse the repository at this point in the history
  • Loading branch information
Cynosphere committed Jan 20, 2025
1 parent 29de65c commit 73ee38e
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 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.6",
"version": "1.1.7",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
12 changes: 7 additions & 5 deletions src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,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 @@ -116,11 +116,13 @@ 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 73ee38e

Please sign in to comment.