bloxd-types 0.1.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.npmignore +1 -0
- package/package.json +25 -0
- package/types/@bloxd/globals.d.ts +874 -0
- package/types/@bloxd/index.d.ts +4003 -0
- package/types/@bloxd/lib.d.ts +6403 -0
- package/types/@plugins/debug/index.d.ts +3 -0
- package/types/@plugins/helpers/index.d.ts +67 -0
- package/types/@plugins/sessionBasedGame/index.d.ts +185 -0
package/.npmignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export__
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "bloxd-types",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "This package is maintained as a mirror of the hardcoded bloxd-api types.",
|
|
5
|
+
"exports": {
|
|
6
|
+
".": {
|
|
7
|
+
"types": "./types/@bloxd/index.d.ts"
|
|
8
|
+
},
|
|
9
|
+
"./lib": {
|
|
10
|
+
"types": "./types/@bloxd/lib.d.ts"
|
|
11
|
+
},
|
|
12
|
+
"./globals": {
|
|
13
|
+
"types": "./types/@bloxd/globals.d.ts"
|
|
14
|
+
},
|
|
15
|
+
"./plugins/debug": {
|
|
16
|
+
"types": "./types/@plugins/debug/index.d.ts"
|
|
17
|
+
},
|
|
18
|
+
"./plugins/sessionBasedGame": {
|
|
19
|
+
"types": "./types/@plugins/sessionBasedGame/index.d.ts"
|
|
20
|
+
},
|
|
21
|
+
"./plugins/helpers": {
|
|
22
|
+
"types": "./types/@plugins/helpers/index.d.ts"
|
|
23
|
+
}
|
|
24
|
+
}
|
|
25
|
+
}
|