typed-factorio 0.13.1 → 0.13.2

Sign up to get free protection for your applications and to get access to all the features.
@@ -6,48 +6,48 @@
6
6
  * This is the main object, through which most of the API is accessed. It is, however, not available inside handlers
7
7
  * registered with {@link LuaBootstrap.on_load LuaBootstrap::on_load}.
8
8
  *
9
- * {@link https://lua-api.factorio.com/next/ View documentation}
9
+ * {@link https://lua-api.factorio.com/latest/ View documentation}
10
10
  */
11
11
  declare const game: LuaGameScript
12
12
 
13
13
  /**
14
14
  * Provides an interface for registering event handlers.
15
15
  *
16
- * {@link https://lua-api.factorio.com/next/ View documentation}
16
+ * {@link https://lua-api.factorio.com/latest/ View documentation}
17
17
  */
18
18
  declare const script: LuaBootstrap
19
19
 
20
20
  /**
21
21
  * Allows inter-mod communication by way of providing a repository of interfaces that is shared by all mods.
22
22
  *
23
- * {@link https://lua-api.factorio.com/next/ View documentation}
23
+ * {@link https://lua-api.factorio.com/latest/ View documentation}
24
24
  */
25
25
  declare const remote: LuaRemote
26
26
 
27
27
  /**
28
28
  * Allows registering custom commands for the in-game console accessible via the grave key.
29
29
  *
30
- * {@link https://lua-api.factorio.com/next/ View documentation}
30
+ * {@link https://lua-api.factorio.com/latest/ View documentation}
31
31
  */
32
32
  declare const commands: LuaCommandProcessor
33
33
 
34
34
  /**
35
35
  * Allows reading the current mod settings.
36
36
  *
37
- * {@link https://lua-api.factorio.com/next/ View documentation}
37
+ * {@link https://lua-api.factorio.com/latest/ View documentation}
38
38
  */
39
39
  declare const settings: LuaSettings
40
40
 
41
41
  /**
42
42
  * Allows printing messages to the calling RCON instance if any.
43
43
  *
44
- * {@link https://lua-api.factorio.com/next/ View documentation}
44
+ * {@link https://lua-api.factorio.com/latest/ View documentation}
45
45
  */
46
46
  declare const rcon: LuaRCON
47
47
 
48
48
  /**
49
49
  * Allows rendering of geometric shapes, text and sprites in the game world.
50
50
  *
51
- * {@link https://lua-api.factorio.com/next/ View documentation}
51
+ * {@link https://lua-api.factorio.com/latest/ View documentation}
52
52
  */
53
53
  declare const rendering: LuaRendering
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "typed-factorio",
3
- "version": "0.13.1",
3
+ "version": "0.13.2",
4
4
  "description": "Featureful typescript definitions for the the Factorio modding lua api.",
5
5
  "keywords": [
6
6
  "factorio",