File tree 2 files changed +11
-2
lines changed
2 files changed +11
-2
lines changed Original file line number Diff line number Diff line change @@ -45,7 +45,16 @@ register((moonmap) => {
45
45
});
46
46
```
47
47
48
- If you're creating a type for the module (you should!), export the type as the default export. When adding new types to a mapping:
48
+ If you're creating a type for the module (you should!), export a type named ` Exports ` as the default export. The name is required!
49
+
50
+ ``` ts
51
+ type Exports = {
52
+ /* ... */
53
+ };
54
+ export default Exports ;
55
+ ```
56
+
57
+ When adding new types to a mapping:
49
58
50
59
- Add its path and a name to ` generate.js `
51
60
- Name should be the last part of the path except in cases where it breaks syntax (e.g. ` highlight.js ` -> ` HighlightJS ` )
Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ moonlight itself can be updated from a number of ways:
24
24
- The Discord crash screen
25
25
- The moonlight installer (or however you installed moonlight)
26
26
27
- Extensions can be updated from Moonbase. If you cannot access it, moonbase will attempt to let you update extensions from the crash screen itself.
27
+ Extensions can be updated from Moonbase. If you cannot access it, Moonbase will attempt to let you update extensions from the crash screen itself.
28
28
29
29
## Reset your config
30
30
You can’t perform that action at this time.
0 commit comments