typed-factorio 3.13.0 → 3.13.1

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typed-factorio",
3
- "version": "3.13.0",
3
+ "version": "3.13.1",
4
4
  "description": "Featureful typescript definitions for the Factorio modding api.",
5
5
  "keywords": [
6
6
  "factorio",
@@ -15662,16 +15662,16 @@ declare module "factorio:runtime" {
15662
15662
  * @see {@link https://lua-api.factorio.com/2.0.32/classes/LuaGuiElement.html#LuaGuiElement.elem_value Online documentation}
15663
15663
  */
15664
15664
  get elem_value(): this["elem_type"] extends "signal"
15665
- ? SignalID
15665
+ ? SignalID | nil
15666
15666
  : this["elem_type"] extends "with-quality"
15667
- ? PrototypeWithQualityRead
15668
- : string
15667
+ ? PrototypeWithQualityRead | nil
15668
+ : string | nil
15669
15669
  set elem_value(
15670
15670
  value: this["elem_type"] extends "signal"
15671
- ? SignalIDWrite
15671
+ ? SignalIDWrite | nil
15672
15672
  : this["elem_type"] extends "with-quality"
15673
- ? PrototypeWithQuality
15674
- : string,
15673
+ ? PrototypeWithQuality | nil
15674
+ : string | nil,
15675
15675
  )
15676
15676
  /**
15677
15677
  * The elem filters of this choose-elem-button, if any. The compatible type of filter is determined by `elem_type`.