typed-factorio 3.23.0 → 3.25.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/common/helpers-global.d.ts +7 -0
- package/index.d.ts +1 -0
- package/package.json +2 -2
- package/prototype/generated/prototypes.d.ts +2204 -2147
- package/prototype/generated/types.d.ts +2132 -2132
- package/runtime/generated/classes.d.ts +3842 -3773
- package/runtime/generated/concepts.d.ts +402 -330
- package/runtime/generated/defines.d.ts +244 -192
- package/runtime/generated/events.d.ts +205 -205
- package/runtime/generated/global-functions.d.ts +3 -3
- package/runtime/generated/global-objects.d.ts +9 -14
@@ -0,0 +1,7 @@
|
|
1
|
+
/**
|
2
|
+
* Provides access to various helper and utility functions.
|
3
|
+
*
|
4
|
+
* Available in all stages since 2.0.55.
|
5
|
+
* @see {@link https://lua-api.factorio.com/2.0.55/index-runtime.html Online documentation}
|
6
|
+
*/
|
7
|
+
declare const helpers: import("factorio:runtime").LuaHelpers
|
package/index.d.ts
CHANGED
@@ -21,5 +21,6 @@ and factorio:runtime modules.
|
|
21
21
|
|
22
22
|
// common globals
|
23
23
|
/// <reference path="common/serpent.d.ts" />
|
24
|
+
/// <reference path="common/helpers-global.d.ts" />
|
24
25
|
/// <reference path="runtime/generated/defines.d.ts" />
|
25
26
|
/// <reference path="runtime/generated/global-functions.d.ts" />
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "typed-factorio",
|
3
|
-
"version": "3.
|
3
|
+
"version": "3.25.0",
|
4
4
|
"description": "Featureful typescript definitions for the Factorio modding api.",
|
5
5
|
"keywords": [
|
6
6
|
"factorio",
|
@@ -61,5 +61,5 @@
|
|
61
61
|
"typescript": "~5.4.2",
|
62
62
|
"typescript-to-lua": "^1.25.0"
|
63
63
|
},
|
64
|
-
"factorioVersion": "2.0.
|
64
|
+
"factorioVersion": "2.0.55"
|
65
65
|
}
|