typed-factorio 3.10.0 → 3.12.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/LICENSE CHANGED
@@ -1,21 +1,21 @@
1
- MIT License
2
-
3
- Copyright (c) 2021 Benjamin Ye
4
-
5
- Permission is hereby granted, free of charge, to any person obtaining a copy
6
- of this software and associated documentation files (the "Software"), to deal
7
- in the Software without restriction, including without limitation the rights
8
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
- copies of the Software, and to permit persons to whom the Software is
10
- furnished to do so, subject to the following conditions:
11
-
12
- The above copyright notice and this permission notice shall be included in all
13
- copies or substantial portions of the Software.
14
-
15
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
- SOFTWARE.
1
+ MIT License
2
+
3
+ Copyright (c) 2021 Benjamin Ye
4
+
5
+ Permission is hereby granted, free of charge, to any person obtaining a copy
6
+ of this software and associated documentation files (the "Software"), to deal
7
+ in the Software without restriction, including without limitation the rights
8
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9
+ copies of the Software, and to permit persons to whom the Software is
10
+ furnished to do so, subject to the following conditions:
11
+
12
+ The above copyright notice and this permission notice shall be included in all
13
+ copies or substantial portions of the Software.
14
+
15
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21
+ SOFTWARE.
package/README.md CHANGED
@@ -1,222 +1,222 @@
1
- [![NPM Version](https://img.shields.io/npm/v/typed-factorio)](https://www.npmjs.com/package/typed-factorio) ![Factorio version](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fregistry.npmjs.com%2Ftyped-factorio%2Flatest&query=%24.factorioVersion&prefix=v&label=Factorio%20version)
2
-
3
- # Typed Factorio
4
-
5
- Complete and featureful typescript definitions for the Factorio modding lua API, for use with [TypescriptToLua](https://typescripttolua.github.io/).
6
-
7
- This project aims to provide type definitions are as complete as possible.
8
- The generator uses both the Factorio api docs JSON and manually defined additions.
9
-
10
- ## Installation
11
-
12
- To use in your [TypescriptToLua](https://typescripttolua.github.io/) project:
13
-
14
- 1. Install this package: `npm install typed-factorio`
15
-
16
- - Note: When types are updated for a new factorio version, you will need to update this package.
17
-
18
- 2. Add types for the [stages](https://lua-api.factorio.com/1.1.89/index.html) used to `tsconfig.json > compilerOptions > types`.
19
- The available stages are `"typed-factorio/settings"`, `"typed-factorio/prototype"`, and `"typed-factorio/runtime"`.
20
-
21
- Example:
22
-
23
- ```diff
24
- // in tsconfig.json
25
- {
26
- "compilerOptions": {
27
- + "types": [ "typed-factorio/runtime" ]
28
- }
29
- }
30
- ```
31
-
32
- The stages used will select the global variables defined.
33
- You can include multiple stages, but there are some caveats. See [Using multiple stages in the same project](#using-multiple-loading-stages-in-the-same-project) for more info.
34
-
35
- ## Usage notes
36
-
37
- Here are some notes on using the types:
38
-
39
- ### Types for other stages
40
-
41
- No matter which stage(s) are selected, _type_ definitions for all stages are available in the modules `"factorio:settings"`, `"factorio:prototype"`, and `"factorio:runtime"`:
42
-
43
- ```ts
44
- import { BoolSettingDefinition } from "factorio:settings"
45
- import { ItemPrototype } from "factorio:prototype"
46
- import { LuaEntity } from "factorio:runtime"
47
- ```
48
-
49
- You can also include just `"typed-factorio"` in your `types` field. This will include only global variables available to _all_ stages.
50
-
51
- ### `data.extend()` types
52
-
53
- In the settings and prototype stages, the `data` global variable is available.
54
-
55
- For [performance reasons](https://github.com/microsoft/TypeScript/wiki/Performance#preferring-base-types-over-unions), `data.extend()` is by default loosely typed.
56
- To get full type checking, you can use specific types in one of the following ways:
57
-
58
- ```ts
59
- // Use `satisfies` to check types:
60
- data.extend([
61
- {
62
- type: "ammo-category",
63
- name: "foo",
64
- } satisfies AmmoCategory,
65
- {
66
- type: "item",
67
- name: "bar",
68
- // ...other fields
69
- } satisfies ItemPrototype,
70
- ])
71
-
72
- // List types as a type argument to `extend`:
73
- data.extend<AmmoCategory | ItemPrototype>([
74
- {
75
- type: "ammo-category",
76
- name: "foo",
77
- },
78
- {
79
- type: "item",
80
- name: "bar",
81
- // ...other fields
82
- },
83
- ])
84
-
85
- // Use types on separate variables:
86
- const fooCategory: AmmoCategory = {
87
- /* ... */
88
- }
89
- const barItem: ItemPrototype = {
90
- /* ... */
91
- }
92
- data.extend([fooCategory, barItem])
93
- ```
94
-
95
- ### Factorio lualib modules
96
-
97
- There are types for the following [Factorio lualib modules](https://github.com/wube/factorio-data/tree/master/core/lualib):
98
-
99
- - `util`
100
- - `mod-gui`
101
-
102
- These can be imported as modules:
103
-
104
- ```ts
105
- import * as util from "util"
106
-
107
- const foo = util.copy(bar)
108
- ```
109
-
110
- If you wish to see types for more lualib modules, feel free to open an issue or pull request.
111
-
112
- ### The `storage` table
113
-
114
- The `storage` table (in the runtime stage) can have any shape, so it is not defined here. Instead, you can define it yourself:
115
-
116
- - Add `declare const storage: <Your type>` in a `.d.ts` file. Make sure this file is included by your tsconfig!
117
- - Add `declare global { const storage: <Your type> }` in a `.ts` file included in your project.
118
- - Add `declare const storage: {...}` to each file where needed. This way, you can define only properties that each file specifically uses.
119
-
120
- ## Using multiple loading stages in the same project
121
-
122
- Every Factorio loading stage declares different global variables.
123
- To add types for multiple Factorio stages, you have a few options:
124
-
125
- 1. Add multiple stages to the "types" field, e.g. `"types": ["typed-factorio/prototype", "typed-factorio/runtime"]`. This will define global variables for _all_ stages selected. With this option, take care that you only use global variables available in the stages the code is run.
126
- 2. Add _only_ the runtime stage, then manually declare other global variables in files that use them. There are types in `"factorio:common"` to allow this:
127
- ```ts
128
- // -- For the prototype stage --
129
- import { PrototypeData, ActiveMods, FeatureFlags } from "factorio:common"
130
- declare const data: PrototypeData
131
- declare const mods: ActiveMods
132
- declare const feature_flags: FeatureFlags
133
- // The `settings` global variable is already declared in the runtime stage.
134
- // However, in the prototype stage _only_ `settings.startup` are available.
135
- ```
136
- ```ts
137
- // -- For the settings stage --
138
- import { SettingsData, ActiveMods, FeatureFlags } from "factorio:common"
139
- declare const data: SettingsData
140
- declare const mods: ActiveMods
141
- declare const feature_flags: FeatureFlags
142
- ```
143
- 3. Use a separate `tsconfig.json` for each stage. In each `tsconfig.json`, add only files in that stage to the `"include"` field, e.g. `include: ["src/control.ts"]` for the runtime stage. However, this means you need to run `tstl` separately for each stage, and files shared by multiple stages will be compiled multiple times.
144
-
145
- ## Type features
146
-
147
- Here is some info on type features that you may find useful:
148
-
149
- ### `nil`
150
-
151
- The `nil` type is equivalent to `undefined`.
152
- A class attribute is marked as possibly nil if the _read_ type is possibly `nil`. For properties where `nil` is possible on _write_, but not _read_, you can use `undefined!` or `myNullableValue!`, e.g. `controlBehavior.parameters = undefined!`.
153
-
154
- ### Parameter Variants
155
-
156
- Parameter tables with variants (having "additional attributes can be specified depending on type ...") are defined as a union of all variants. The type for a specific variant is prefixed with the variant name (e.g. `AmmoDamageTechnologyModifier`), or prefixed with "Other" for variants without extra properties (e.g. `OtherTechnologyModifier`).
157
-
158
- ### Events
159
-
160
- Event IDs (`defines.events`) hold type info for their corresponding event type and filters, which is used by various methods in `script`.
161
-
162
- You can pass an event data type parameter to `script.generate_event_name<T>()`, and it will return a `CustomEventId` that includes type info.
163
-
164
- ### Optional custominput name checking
165
-
166
- You can optionally enable type-checking for custom input names (for `script.on_event` and `CustomInputPrototype`).
167
- To do so, specify names by extending the CustomInputNames interface like so:
168
-
169
- ```ts
170
- declare module "factorio:common" {
171
- export interface CustomInputNames {
172
- "my-custom-input": any
173
- }
174
- }
175
-
176
- script.on_event("my-custom-input", () => {}) // type-checked
177
- ```
178
-
179
- If not specified, `CustomInputName` defaults to just `string`.
180
-
181
- ### Array-like classes
182
-
183
- Classes that have an index operator, a length operator, and have an array-like structure subclass from `(Readonly)Array`. These are `LuaInventory`, `LuaFluidBox`, `LuaTransportLine`.
184
- This allows you to use these classes like arrays, e.g. having array methods and `.length` translating to the lua length operator. However, this means like typescript arrays, they are **0-indexed, not 1-indexed**.
185
-
186
- ### Read and write variants
187
-
188
- For concepts that can take a table or array form, the main type (e.g. `MapPosition`) defines the table form, and an `Array` suffix (e.g. `MapPositionArray`) defines the array form.
189
- Concepts in a "read" position are in table form, and concepts in a "write" position may be either in table or array form (e.g. `MapPosition | MapPositionArray`).
190
- Concepts that include table-or-array concepts may have an additional `Write` variant (e.g. `ScriptArea`, `ScriptAreaWrite`).
191
-
192
- ### Classes with subclasses
193
-
194
- Some classes have attributes that only work for particular subclasses. For these classes (e.g. `LuaEntity`) there are specific types that you can _optionally_ use:
195
-
196
- - A "Base" type (e.g. `BaseEntity`) which contains only members usable by all subclasses
197
- - Multiple subclass types, e.g. `CraftingMachineEntity`, which extends the base type with members specific to that subclass.
198
-
199
- The original class name (e.g. `LuaEntity`) contains attributes for _all_ subclasses.
200
-
201
- For stricter types, use the `Base` type generally, and the specific subclass type when needed.
202
- You can also create your own type-narrowing functions:
203
-
204
- ```ts
205
- function isCraftingMachineEntity(entity: BaseEntity): entity is CraftingMachineEntity {
206
- return entity.type === "crafting-machine"
207
- }
208
- ```
209
-
210
- ### LuaGuiElement
211
-
212
- `LuaGuiElement` is broken up into a [discriminated union](https://basarat.gitbook.io/typescript/type-system/discriminated-unions), for each gui element type. Individual gui element types can be referred to by `<Type>GuiElement`, e.g. `ButtonGuiElement`.
213
-
214
- Similarly, `GuiSpec` (the table passed to `LuaGuiElement.add`), is also a discriminated union. The type for a specific GuiSpec is `<Type>GuiSpec`, e.g. `ListBoxGuiSpec`. `LuaGuiElement.add` will return the appropriate gui element type corresponding to the GuiSpec type passed in.
215
-
216
- This is done both to provide more accurate types, and for possible integration with [JSX](https://typescripttolua.github.io/docs/jsx/).
217
-
218
- ## Support
219
-
220
- If you find this project useful, consider tipping me on Kofi!
221
-
222
- <a href='https://ko-fi.com/Z8Z1VI6P8' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi2.png?v=3' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
1
+ [![NPM Version](https://img.shields.io/npm/v/typed-factorio)](https://www.npmjs.com/package/typed-factorio) ![Factorio version](https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fregistry.npmjs.com%2Ftyped-factorio%2Flatest&query=%24.factorioVersion&prefix=v&label=Factorio%20version)
2
+
3
+ # Typed Factorio
4
+
5
+ Complete and featureful typescript definitions for the Factorio modding lua API, for use with [TypescriptToLua](https://typescripttolua.github.io/).
6
+
7
+ This project aims to provide type definitions are as complete as possible.
8
+ The generator uses both the Factorio api docs JSON and manually defined additions.
9
+
10
+ ## Installation
11
+
12
+ To use in your [TypescriptToLua](https://typescripttolua.github.io/) project:
13
+
14
+ 1. Install this package: `npm install typed-factorio`
15
+
16
+ - Note: When types are updated for a new factorio version, you will need to update this package.
17
+
18
+ 2. Add types for the [stages](https://lua-api.factorio.com/1.1.89/index.html) used to `tsconfig.json > compilerOptions > types`.
19
+ The available stages are `"typed-factorio/settings"`, `"typed-factorio/prototype"`, and `"typed-factorio/runtime"`.
20
+
21
+ Example:
22
+
23
+ ```diff
24
+ // in tsconfig.json
25
+ {
26
+ "compilerOptions": {
27
+ + "types": [ "typed-factorio/runtime" ]
28
+ }
29
+ }
30
+ ```
31
+
32
+ The stages used will select the global variables defined.
33
+ You can include multiple stages, but there are some caveats. See [Using multiple stages in the same project](#using-multiple-loading-stages-in-the-same-project) for more info.
34
+
35
+ ## Usage notes
36
+
37
+ Here are some notes on using the types:
38
+
39
+ ### Types for other stages
40
+
41
+ No matter which stage(s) are selected, _type_ definitions for all stages are available in the modules `"factorio:settings"`, `"factorio:prototype"`, and `"factorio:runtime"`:
42
+
43
+ ```ts
44
+ import { BoolSettingDefinition } from "factorio:settings"
45
+ import { ItemPrototype } from "factorio:prototype"
46
+ import { LuaEntity } from "factorio:runtime"
47
+ ```
48
+
49
+ You can also include just `"typed-factorio"` in your `types` field. This will include only global variables available to _all_ stages.
50
+
51
+ ### `data.extend()` types
52
+
53
+ In the settings and prototype stages, the `data` global variable is available.
54
+
55
+ For [performance reasons](https://github.com/microsoft/TypeScript/wiki/Performance#preferring-base-types-over-unions), `data.extend()` is by default loosely typed.
56
+ To get full type checking, you can use specific types in one of the following ways:
57
+
58
+ ```ts
59
+ // Use `satisfies` to check types:
60
+ data.extend([
61
+ {
62
+ type: "ammo-category",
63
+ name: "foo",
64
+ } satisfies AmmoCategory,
65
+ {
66
+ type: "item",
67
+ name: "bar",
68
+ // ...other fields
69
+ } satisfies ItemPrototype,
70
+ ])
71
+
72
+ // List types as a type argument to `extend`:
73
+ data.extend<AmmoCategory | ItemPrototype>([
74
+ {
75
+ type: "ammo-category",
76
+ name: "foo",
77
+ },
78
+ {
79
+ type: "item",
80
+ name: "bar",
81
+ // ...other fields
82
+ },
83
+ ])
84
+
85
+ // Use types on separate variables:
86
+ const fooCategory: AmmoCategory = {
87
+ /* ... */
88
+ }
89
+ const barItem: ItemPrototype = {
90
+ /* ... */
91
+ }
92
+ data.extend([fooCategory, barItem])
93
+ ```
94
+
95
+ ### Factorio lualib modules
96
+
97
+ There are types for the following [Factorio lualib modules](https://github.com/wube/factorio-data/tree/master/core/lualib):
98
+
99
+ - `util`
100
+ - `mod-gui`
101
+
102
+ These can be imported as modules:
103
+
104
+ ```ts
105
+ import * as util from "util"
106
+
107
+ const foo = util.copy(bar)
108
+ ```
109
+
110
+ If you wish to see types for more lualib modules, feel free to open an issue or pull request.
111
+
112
+ ### The `storage` table
113
+
114
+ The `storage` table (in the runtime stage) can have any shape, so it is not defined here. Instead, you can define it yourself:
115
+
116
+ - Add `declare const storage: <Your type>` in a `.d.ts` file. Make sure this file is included by your tsconfig!
117
+ - Add `declare global { const storage: <Your type> }` in a `.ts` file included in your project.
118
+ - Add `declare const storage: {...}` to each file where needed. This way, you can define only properties that each file specifically uses.
119
+
120
+ ## Using multiple loading stages in the same project
121
+
122
+ Every Factorio loading stage declares different global variables.
123
+ To add types for multiple Factorio stages, you have a few options:
124
+
125
+ 1. Add multiple stages to the "types" field, e.g. `"types": ["typed-factorio/prototype", "typed-factorio/runtime"]`. This will define global variables for _all_ stages selected. With this option, take care that you only use global variables available in the stages the code is run.
126
+ 2. Add _only_ the runtime stage, then manually declare other global variables in files that use them. There are types in `"factorio:common"` to allow this:
127
+ ```ts
128
+ // -- For the prototype stage --
129
+ import { PrototypeData, ActiveMods, FeatureFlags } from "factorio:common"
130
+ declare const data: PrototypeData
131
+ declare const mods: ActiveMods
132
+ declare const feature_flags: FeatureFlags
133
+ // The `settings` global variable is already declared in the runtime stage.
134
+ // However, in the prototype stage _only_ `settings.startup` are available.
135
+ ```
136
+ ```ts
137
+ // -- For the settings stage --
138
+ import { SettingsData, ActiveMods, FeatureFlags } from "factorio:common"
139
+ declare const data: SettingsData
140
+ declare const mods: ActiveMods
141
+ declare const feature_flags: FeatureFlags
142
+ ```
143
+ 3. Use a separate `tsconfig.json` for each stage. In each `tsconfig.json`, add only files in that stage to the `"include"` field, e.g. `include: ["src/control.ts"]` for the runtime stage. However, this means you need to run `tstl` separately for each stage, and files shared by multiple stages will be compiled multiple times.
144
+
145
+ ## Type features
146
+
147
+ Here is some info on type features that you may find useful:
148
+
149
+ ### `nil`
150
+
151
+ The `nil` type is equivalent to `undefined`.
152
+ A class attribute is marked as possibly nil if the _read_ type is possibly `nil`. For properties where `nil` is possible on _write_, but not _read_, you can use `undefined!` or `myNullableValue!`, e.g. `controlBehavior.parameters = undefined!`.
153
+
154
+ ### Parameter Variants
155
+
156
+ Parameter tables with variants (having "additional attributes can be specified depending on type ...") are defined as a union of all variants. The type for a specific variant is prefixed with the variant name (e.g. `AmmoDamageTechnologyModifier`), or prefixed with "Other" for variants without extra properties (e.g. `OtherTechnologyModifier`).
157
+
158
+ ### Events
159
+
160
+ Event IDs (`defines.events`) hold type info for their corresponding event type and filters, which is used by various methods in `script`.
161
+
162
+ You can pass an event data type parameter to `script.generate_event_name<T>()`, and it will return a `CustomEventId` that includes type info.
163
+
164
+ ### Optional custominput name checking
165
+
166
+ You can optionally enable type-checking for custom input names (for `script.on_event` and `CustomInputPrototype`).
167
+ To do so, specify names by extending the CustomInputNames interface like so:
168
+
169
+ ```ts
170
+ declare module "factorio:common" {
171
+ export interface CustomInputNames {
172
+ "my-custom-input": any
173
+ }
174
+ }
175
+
176
+ script.on_event("my-custom-input", () => {}) // type-checked
177
+ ```
178
+
179
+ If not specified, `CustomInputName` defaults to just `string`.
180
+
181
+ ### Array-like classes
182
+
183
+ Classes that have an index operator, a length operator, and have an array-like structure subclass from `(Readonly)Array`. These are `LuaInventory`, `LuaFluidBox`, `LuaTransportLine`.
184
+ This allows you to use these classes like arrays, e.g. having array methods and `.length` translating to the lua length operator. However, this means like typescript arrays, they are **0-indexed, not 1-indexed**.
185
+
186
+ ### Read and write variants
187
+
188
+ For concepts that can take a table or array form, the main type (e.g. `MapPosition`) defines the table form, and an `Array` suffix (e.g. `MapPositionArray`) defines the array form.
189
+ Concepts in a "read" position are in table form, and concepts in a "write" position may be either in table or array form (e.g. `MapPosition | MapPositionArray`).
190
+ Concepts that include table-or-array concepts may have an additional `Write` variant (e.g. `ScriptArea`, `ScriptAreaWrite`).
191
+
192
+ ### Classes with subclasses
193
+
194
+ Some classes have attributes that only work for particular subclasses. For these classes (e.g. `LuaEntity`) there are specific types that you can _optionally_ use:
195
+
196
+ - A "Base" type (e.g. `BaseEntity`) which contains only members usable by all subclasses
197
+ - Multiple subclass types, e.g. `CraftingMachineEntity`, which extends the base type with members specific to that subclass.
198
+
199
+ The original class name (e.g. `LuaEntity`) contains attributes for _all_ subclasses.
200
+
201
+ For stricter types, use the `Base` type generally, and the specific subclass type when needed.
202
+ You can also create your own type-narrowing functions:
203
+
204
+ ```ts
205
+ function isCraftingMachineEntity(entity: BaseEntity): entity is CraftingMachineEntity {
206
+ return entity.type === "crafting-machine"
207
+ }
208
+ ```
209
+
210
+ ### LuaGuiElement
211
+
212
+ `LuaGuiElement` is broken up into a [discriminated union](https://basarat.gitbook.io/typescript/type-system/discriminated-unions), for each gui element type. Individual gui element types can be referred to by `<Type>GuiElement`, e.g. `ButtonGuiElement`.
213
+
214
+ Similarly, `GuiSpec` (the table passed to `LuaGuiElement.add`), is also a discriminated union. The type for a specific GuiSpec is `<Type>GuiSpec`, e.g. `ListBoxGuiSpec`. `LuaGuiElement.add` will return the appropriate gui element type corresponding to the GuiSpec type passed in.
215
+
216
+ This is done both to provide more accurate types, and for possible integration with [JSX](https://typescripttolua.github.io/docs/jsx/).
217
+
218
+ ## Support
219
+
220
+ If you find this project useful, consider tipping me on Kofi!
221
+
222
+ <a href='https://ko-fi.com/Z8Z1VI6P8' target='_blank'><img height='36' style='border:0px;height:36px;' src='https://storage.ko-fi.com/cdn/kofi2.png?v=3' border='0' alt='Buy Me a Coffee at ko-fi.com' /></a>
@@ -1,23 +1,23 @@
1
- /**
2
- * Provides access to read/edit prototypes.
3
- *
4
- * This is only available in the settings or prototype stage.
5
- * Only prototypes for the current stage can be accessed.
6
- */
7
- declare const data: import("factorio:common").DataGlobal
8
-
9
- /**
10
- * A table of (mod name -> mod version) for all currently active mods.
11
- *
12
- * This global is only available in the settings or prototype stage.
13
- * In the runtime stage, use `script.active_mods`.
14
- */
15
- declare const mods: import("factorio:common").ActiveMods
16
-
17
- /**
18
- * A dict of feature flags and their status.
19
- *
20
- * This global is only available in the settings or prototype stage.
21
- * In the runtime stage, use `script.feature_flags`.
22
- */
23
- declare const feature_flags: import("factorio:common").FeatureFlags
1
+ /**
2
+ * Provides access to read/edit prototypes.
3
+ *
4
+ * This is only available in the settings or prototype stage.
5
+ * Only prototypes for the current stage can be accessed.
6
+ */
7
+ declare const data: import("factorio:common").DataGlobal
8
+
9
+ /**
10
+ * A table of (mod name -> mod version) for all currently active mods.
11
+ *
12
+ * This global is only available in the settings or prototype stage.
13
+ * In the runtime stage, use `script.active_mods`.
14
+ */
15
+ declare const mods: import("factorio:common").ActiveMods
16
+
17
+ /**
18
+ * A dict of feature flags and their status.
19
+ *
20
+ * This global is only available in the settings or prototype stage.
21
+ * In the runtime stage, use `script.feature_flags`.
22
+ */
23
+ declare const feature_flags: import("factorio:common").FeatureFlags