typed-factorio 3.10.0 → 3.11.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 +21 -21
- package/README.md +222 -222
- package/common/data-global.d.ts +23 -23
- package/common/serpent.d.ts +94 -94
- package/common/settings-global.d.ts +8 -8
- package/common/types.d.ts +106 -106
- package/index.d.ts +25 -25
- package/lualib/index.d.ts +2 -2
- package/lualib/mod-gui.d.ts +12 -12
- package/lualib/util.d.ts +151 -151
- package/package.json +65 -65
- package/prototype/generated/prototypes.d.ts +2089 -2079
- package/prototype/generated/types.d.ts +2101 -2101
- package/prototype/index.d.ts +11 -11
- package/runtime/generated/classes.d.ts +3749 -3667
- package/runtime/generated/concepts.d.ts +295 -299
- package/runtime/generated/defines.d.ts +178 -177
- package/runtime/generated/events.d.ts +201 -201
- package/runtime/generated/global-functions.d.ts +3 -3
- package/runtime/generated/global-objects.d.ts +8 -8
- package/runtime/index.d.ts +11 -11
- package/runtime/pairs.d.ts +12 -12
- package/settings/index.d.ts +10 -10
- package/settings/types.d.ts +118 -118
package/common/serpent.d.ts
CHANGED
@@ -1,94 +1,94 @@
|
|
1
|
-
// from https://lua-api.factorio.com/latest/Libraries.html
|
2
|
-
|
3
|
-
/** @noSelfInFile */
|
4
|
-
|
5
|
-
/**
|
6
|
-
* Factorio provides the {@link https://github.com/pkulchenko/serpent serpent library} as a global variable named
|
7
|
-
* `serpent` for all mods to use. Its purpose is to allow for easy printing of Lua tables (using `serpent.block()` for
|
8
|
-
* example), which can be useful when debugging. It can't pretty-print LuaObjects such as {@link LuaEntity} however.
|
9
|
-
*
|
10
|
-
* The serpent library was modified for determinism, e.g. comments are turned off by default to avoid returning table
|
11
|
-
* addresses. Furthermore, two options were added: `refcomment` (true/false/maxlevel) and `tablecomment`
|
12
|
-
* (true/false/maxlevel), which allow to separately control the self-reference and table value output of the comment
|
13
|
-
* option.
|
14
|
-
*/
|
15
|
-
declare namespace serpent {
|
16
|
-
/** @noSelf */
|
17
|
-
interface Options {
|
18
|
-
/** Indentation; triggers long multi-line output. */
|
19
|
-
indent: string
|
20
|
-
/** Provide stringified value in a comment (up to maxlevel of depth). */
|
21
|
-
comment: boolean | number
|
22
|
-
/** Sort keys. */
|
23
|
-
sortkeys: boolean | ((this: void, keys: any[], table: any) => void)
|
24
|
-
/** Force sparse encoding (no nil filling based on #t). */
|
25
|
-
sparse: boolean
|
26
|
-
/** Remove spaces. */
|
27
|
-
compact: boolean
|
28
|
-
/** Raise fatal error on non-serializable values. */
|
29
|
-
fatal: boolean
|
30
|
-
/** Disable bytecode serialization for easy comparison. */
|
31
|
-
nocode: boolean
|
32
|
-
/** Disable checking numbers against undefined and huge values. */
|
33
|
-
nohuge: boolean
|
34
|
-
/** Specify max level up to which to expand nested tables. */
|
35
|
-
maxlevel: number
|
36
|
-
/** Specify max number of elements in a table. */
|
37
|
-
maxnum: number
|
38
|
-
/** Specify max length for all table elements. */
|
39
|
-
maxlength: number
|
40
|
-
/**
|
41
|
-
* Use __tostring metamethod when serializing tables (v0.29); set to false to disable and serialize the table as is,
|
42
|
-
* even when __tostring is present.
|
43
|
-
*/
|
44
|
-
metatostring: boolean
|
45
|
-
/**
|
46
|
-
* Specify format for numeric values as shortest possible round-trippable double (v0.30). Use "%.16g" for better
|
47
|
-
* readability and "%.17g" (the default value) to preserve floating point precision.
|
48
|
-
*/
|
49
|
-
numformat: string
|
50
|
-
/** Allows to specify a list of values to ignore (as keys). */
|
51
|
-
valignore: string[]
|
52
|
-
/** Allows to specify the list of keys to be serialized. Any keys not in this list are not included in final output (as keys). */
|
53
|
-
keyallow: string[]
|
54
|
-
/** Allows to specity the list of keys to ignore in serialization. */
|
55
|
-
keyignore: string[]
|
56
|
-
/** Allows to specify a list of value types to ignore (as keys). */
|
57
|
-
valtypeignore: string[]
|
58
|
-
|
59
|
-
/** Provide custom output for tables. */
|
60
|
-
custom(opts: {
|
61
|
-
/** The name of the current element with '=' or an empty string in case of array index, */
|
62
|
-
tag: string
|
63
|
-
/** An opening table bracket { and associated indentation and newline (if any), */
|
64
|
-
head: string
|
65
|
-
/** Table elements concatenated into a string using commas and indentation/newlines (if any), */
|
66
|
-
body: string
|
67
|
-
/** A closing table bracket } and associated indentation and newline (if any), and */
|
68
|
-
tail: string
|
69
|
-
/** The current level. */
|
70
|
-
level: number
|
71
|
-
}): string
|
72
|
-
|
73
|
-
/** Name; triggers full serialization with self-ref section. */
|
74
|
-
name: string
|
75
|
-
|
76
|
-
refcomment: boolean | number
|
77
|
-
tablecomment: boolean | number
|
78
|
-
}
|
79
|
-
|
80
|
-
/** Full serialization; sets name, compact and sparse options; */
|
81
|
-
function dump(tbl: unknown, options?: Partial<Options>): string
|
82
|
-
|
83
|
-
/** Single line pretty printing, no self-ref section; sets sortkeys and comment options; */
|
84
|
-
function line(tbl: unknown, options?: Partial<Options>): string
|
85
|
-
|
86
|
-
/** Multi-line indented pretty printing, no self-ref section; sets indent, sortkeys, and comment options. */
|
87
|
-
function block(tbl: unknown, options?: Partial<Options>): string
|
88
|
-
|
89
|
-
/**
|
90
|
-
* For loading serialized fragments, serpent also provides `load` function that adds safety checks and reports an
|
91
|
-
* error if there is any executable code in the fragment.
|
92
|
-
*/
|
93
|
-
function load<T>(str: string, options?: { safe?: boolean }): LuaMultiReturn<[true, T] | [false, string]>
|
94
|
-
}
|
1
|
+
// from https://lua-api.factorio.com/latest/Libraries.html
|
2
|
+
|
3
|
+
/** @noSelfInFile */
|
4
|
+
|
5
|
+
/**
|
6
|
+
* Factorio provides the {@link https://github.com/pkulchenko/serpent serpent library} as a global variable named
|
7
|
+
* `serpent` for all mods to use. Its purpose is to allow for easy printing of Lua tables (using `serpent.block()` for
|
8
|
+
* example), which can be useful when debugging. It can't pretty-print LuaObjects such as {@link LuaEntity} however.
|
9
|
+
*
|
10
|
+
* The serpent library was modified for determinism, e.g. comments are turned off by default to avoid returning table
|
11
|
+
* addresses. Furthermore, two options were added: `refcomment` (true/false/maxlevel) and `tablecomment`
|
12
|
+
* (true/false/maxlevel), which allow to separately control the self-reference and table value output of the comment
|
13
|
+
* option.
|
14
|
+
*/
|
15
|
+
declare namespace serpent {
|
16
|
+
/** @noSelf */
|
17
|
+
interface Options {
|
18
|
+
/** Indentation; triggers long multi-line output. */
|
19
|
+
indent: string
|
20
|
+
/** Provide stringified value in a comment (up to maxlevel of depth). */
|
21
|
+
comment: boolean | number
|
22
|
+
/** Sort keys. */
|
23
|
+
sortkeys: boolean | ((this: void, keys: any[], table: any) => void)
|
24
|
+
/** Force sparse encoding (no nil filling based on #t). */
|
25
|
+
sparse: boolean
|
26
|
+
/** Remove spaces. */
|
27
|
+
compact: boolean
|
28
|
+
/** Raise fatal error on non-serializable values. */
|
29
|
+
fatal: boolean
|
30
|
+
/** Disable bytecode serialization for easy comparison. */
|
31
|
+
nocode: boolean
|
32
|
+
/** Disable checking numbers against undefined and huge values. */
|
33
|
+
nohuge: boolean
|
34
|
+
/** Specify max level up to which to expand nested tables. */
|
35
|
+
maxlevel: number
|
36
|
+
/** Specify max number of elements in a table. */
|
37
|
+
maxnum: number
|
38
|
+
/** Specify max length for all table elements. */
|
39
|
+
maxlength: number
|
40
|
+
/**
|
41
|
+
* Use __tostring metamethod when serializing tables (v0.29); set to false to disable and serialize the table as is,
|
42
|
+
* even when __tostring is present.
|
43
|
+
*/
|
44
|
+
metatostring: boolean
|
45
|
+
/**
|
46
|
+
* Specify format for numeric values as shortest possible round-trippable double (v0.30). Use "%.16g" for better
|
47
|
+
* readability and "%.17g" (the default value) to preserve floating point precision.
|
48
|
+
*/
|
49
|
+
numformat: string
|
50
|
+
/** Allows to specify a list of values to ignore (as keys). */
|
51
|
+
valignore: string[]
|
52
|
+
/** Allows to specify the list of keys to be serialized. Any keys not in this list are not included in final output (as keys). */
|
53
|
+
keyallow: string[]
|
54
|
+
/** Allows to specity the list of keys to ignore in serialization. */
|
55
|
+
keyignore: string[]
|
56
|
+
/** Allows to specify a list of value types to ignore (as keys). */
|
57
|
+
valtypeignore: string[]
|
58
|
+
|
59
|
+
/** Provide custom output for tables. */
|
60
|
+
custom(opts: {
|
61
|
+
/** The name of the current element with '=' or an empty string in case of array index, */
|
62
|
+
tag: string
|
63
|
+
/** An opening table bracket { and associated indentation and newline (if any), */
|
64
|
+
head: string
|
65
|
+
/** Table elements concatenated into a string using commas and indentation/newlines (if any), */
|
66
|
+
body: string
|
67
|
+
/** A closing table bracket } and associated indentation and newline (if any), and */
|
68
|
+
tail: string
|
69
|
+
/** The current level. */
|
70
|
+
level: number
|
71
|
+
}): string
|
72
|
+
|
73
|
+
/** Name; triggers full serialization with self-ref section. */
|
74
|
+
name: string
|
75
|
+
|
76
|
+
refcomment: boolean | number
|
77
|
+
tablecomment: boolean | number
|
78
|
+
}
|
79
|
+
|
80
|
+
/** Full serialization; sets name, compact and sparse options; */
|
81
|
+
function dump(tbl: unknown, options?: Partial<Options>): string
|
82
|
+
|
83
|
+
/** Single line pretty printing, no self-ref section; sets sortkeys and comment options; */
|
84
|
+
function line(tbl: unknown, options?: Partial<Options>): string
|
85
|
+
|
86
|
+
/** Multi-line indented pretty printing, no self-ref section; sets indent, sortkeys, and comment options. */
|
87
|
+
function block(tbl: unknown, options?: Partial<Options>): string
|
88
|
+
|
89
|
+
/**
|
90
|
+
* For loading serialized fragments, serpent also provides `load` function that adds safety checks and reports an
|
91
|
+
* error if there is any executable code in the fragment.
|
92
|
+
*/
|
93
|
+
function load<T>(str: string, options?: { safe?: boolean }): LuaMultiReturn<[true, T] | [false, string]>
|
94
|
+
}
|
@@ -1,8 +1,8 @@
|
|
1
|
-
/**
|
2
|
-
* Provides access to the current mod settings.
|
3
|
-
* This is available in the prototype and runtime stages.
|
4
|
-
*
|
5
|
-
* In the prototype stage, _only_ the `startup` settings are available.
|
6
|
-
* In the runtime stage, this is extended with the full {@link LuaSettings} interface.
|
7
|
-
*/
|
8
|
-
declare const settings: import("factorio:common").SettingsGlobal
|
1
|
+
/**
|
2
|
+
* Provides access to the current mod settings.
|
3
|
+
* This is available in the prototype and runtime stages.
|
4
|
+
*
|
5
|
+
* In the prototype stage, _only_ the `startup` settings are available.
|
6
|
+
* In the runtime stage, this is extended with the full {@link LuaSettings} interface.
|
7
|
+
*/
|
8
|
+
declare const settings: import("factorio:common").SettingsGlobal
|
package/common/types.d.ts
CHANGED
@@ -1,106 +1,106 @@
|
|
1
|
-
/** @noResolution */
|
2
|
-
declare module "factorio:common" {
|
3
|
-
import { ModSetting, LuaBootstrap } from "factorio:runtime"
|
4
|
-
import { Data } from "factorio:prototype"
|
5
|
-
import { SettingsPrototypeMap } from "factorio:settings"
|
6
|
-
/**
|
7
|
-
* A type map of type name -> prototype type.
|
8
|
-
*
|
9
|
-
* Including the settings/prototype stage in your tsconfig extends this interface.
|
10
|
-
*/
|
11
|
-
export interface GlobalPrototypeMap {}
|
12
|
-
|
13
|
-
/** Represents any valid prototype. */
|
14
|
-
export interface AnyPrototype<M = GlobalPrototypeMap> {
|
15
|
-
readonly type: keyof M
|
16
|
-
readonly name: string
|
17
|
-
}
|
18
|
-
|
19
|
-
/**
|
20
|
-
* See {@link Data} for documentation.
|
21
|
-
*/
|
22
|
-
export interface DataGlobal<M = GlobalPrototypeMap> {
|
23
|
-
/**
|
24
|
-
* A table of the already added prototypes.
|
25
|
-
* Indexed by prototype type, then by prototype name.
|
26
|
-
*/
|
27
|
-
readonly raw: {
|
28
|
-
readonly [type in keyof M]: {
|
29
|
-
readonly [name in string]?: M[type]
|
30
|
-
}
|
31
|
-
}
|
32
|
-
|
33
|
-
extend<P extends AnyPrototype<M>>(prototypes: readonly P[]): void
|
34
|
-
|
35
|
-
is_demo: boolean
|
36
|
-
}
|
37
|
-
|
38
|
-
export interface SettingsGlobal {
|
39
|
-
readonly startup: {
|
40
|
-
readonly [name: string]: ModSetting
|
41
|
-
}
|
42
|
-
}
|
43
|
-
|
44
|
-
/** A version string, in the form "major.minor.patch". */
|
45
|
-
export type VersionString = `${bigint}.${bigint}.${bigint}`
|
46
|
-
|
47
|
-
export interface ActiveMods {
|
48
|
-
readonly [modName: string]: VersionString | undefined
|
49
|
-
}
|
50
|
-
|
51
|
-
export type FeatureFlags = LuaBootstrap["feature_flags"]
|
52
|
-
|
53
|
-
/**
|
54
|
-
* Represents the `data` global variable for the prototype stage.
|
55
|
-
*
|
56
|
-
* If you did _not_ add `"typed-factorio/prototype"` to your tsconfig, you can manually declare this global like so:
|
57
|
-
* ```ts
|
58
|
-
* import { PrototypeData } from "factorio:prototype"
|
59
|
-
* declare const data: PrototypeData
|
60
|
-
*
|
61
|
-
* data.extend(...)
|
62
|
-
* ```
|
63
|
-
*/
|
64
|
-
export type PrototypeData = Data
|
65
|
-
|
66
|
-
/**
|
67
|
-
* Represents the `data` global variable for the settings stage.
|
68
|
-
*
|
69
|
-
* If you did _not_ add `"typed-factorio/settings"` to your tsconfig, you can manually declare this global like so:
|
70
|
-
* ```ts
|
71
|
-
* import { SettingsData } from "factorio:settings"
|
72
|
-
* declare const data: SettingsData
|
73
|
-
*
|
74
|
-
* data.extend(...)
|
75
|
-
* ```
|
76
|
-
*/
|
77
|
-
export type SettingsData = DataGlobal<SettingsPrototypeMap>
|
78
|
-
|
79
|
-
/**
|
80
|
-
* You can optionally extend this interface to provide type checking and autocompletion for custom input names, like so:
|
81
|
-
* ```ts
|
82
|
-
* declare module "factorio:common" {
|
83
|
-
* export interface CustomInputNames {
|
84
|
-
* "my-custom-event": true
|
85
|
-
* }
|
86
|
-
* }
|
87
|
-
*
|
88
|
-
* // this enables type checking for the following:
|
89
|
-
* script.on_event("my-custom-event", ...)
|
90
|
-
*
|
91
|
-
* data.extend<CustomInputPrototype>([{
|
92
|
-
* type: "custom-input",
|
93
|
-
* name: "my-custom-event", // type checked
|
94
|
-
* }])
|
95
|
-
* ```
|
96
|
-
* @see CustomInputName
|
97
|
-
*/
|
98
|
-
export interface CustomInputNames {}
|
99
|
-
|
100
|
-
/**
|
101
|
-
* All custom event names. See {@link CustomInputNames}.
|
102
|
-
*
|
103
|
-
* If none are specified, this is just `string`.
|
104
|
-
*/
|
105
|
-
export type CustomInputName = [keyof CustomInputNames] extends [never] ? string : keyof CustomInputNames
|
106
|
-
}
|
1
|
+
/** @noResolution */
|
2
|
+
declare module "factorio:common" {
|
3
|
+
import { ModSetting, LuaBootstrap } from "factorio:runtime"
|
4
|
+
import { Data } from "factorio:prototype"
|
5
|
+
import { SettingsPrototypeMap } from "factorio:settings"
|
6
|
+
/**
|
7
|
+
* A type map of type name -> prototype type.
|
8
|
+
*
|
9
|
+
* Including the settings/prototype stage in your tsconfig extends this interface.
|
10
|
+
*/
|
11
|
+
export interface GlobalPrototypeMap {}
|
12
|
+
|
13
|
+
/** Represents any valid prototype. */
|
14
|
+
export interface AnyPrototype<M = GlobalPrototypeMap> {
|
15
|
+
readonly type: keyof M
|
16
|
+
readonly name: string
|
17
|
+
}
|
18
|
+
|
19
|
+
/**
|
20
|
+
* See {@link Data} for documentation.
|
21
|
+
*/
|
22
|
+
export interface DataGlobal<M = GlobalPrototypeMap> {
|
23
|
+
/**
|
24
|
+
* A table of the already added prototypes.
|
25
|
+
* Indexed by prototype type, then by prototype name.
|
26
|
+
*/
|
27
|
+
readonly raw: {
|
28
|
+
readonly [type in keyof M]: {
|
29
|
+
readonly [name in string]?: M[type]
|
30
|
+
}
|
31
|
+
}
|
32
|
+
|
33
|
+
extend<P extends AnyPrototype<M>>(prototypes: readonly P[]): void
|
34
|
+
|
35
|
+
is_demo: boolean
|
36
|
+
}
|
37
|
+
|
38
|
+
export interface SettingsGlobal {
|
39
|
+
readonly startup: {
|
40
|
+
readonly [name: string]: ModSetting
|
41
|
+
}
|
42
|
+
}
|
43
|
+
|
44
|
+
/** A version string, in the form "major.minor.patch". */
|
45
|
+
export type VersionString = `${bigint}.${bigint}.${bigint}`
|
46
|
+
|
47
|
+
export interface ActiveMods {
|
48
|
+
readonly [modName: string]: VersionString | undefined
|
49
|
+
}
|
50
|
+
|
51
|
+
export type FeatureFlags = LuaBootstrap["feature_flags"]
|
52
|
+
|
53
|
+
/**
|
54
|
+
* Represents the `data` global variable for the prototype stage.
|
55
|
+
*
|
56
|
+
* If you did _not_ add `"typed-factorio/prototype"` to your tsconfig, you can manually declare this global like so:
|
57
|
+
* ```ts
|
58
|
+
* import { PrototypeData } from "factorio:prototype"
|
59
|
+
* declare const data: PrototypeData
|
60
|
+
*
|
61
|
+
* data.extend(...)
|
62
|
+
* ```
|
63
|
+
*/
|
64
|
+
export type PrototypeData = Data
|
65
|
+
|
66
|
+
/**
|
67
|
+
* Represents the `data` global variable for the settings stage.
|
68
|
+
*
|
69
|
+
* If you did _not_ add `"typed-factorio/settings"` to your tsconfig, you can manually declare this global like so:
|
70
|
+
* ```ts
|
71
|
+
* import { SettingsData } from "factorio:settings"
|
72
|
+
* declare const data: SettingsData
|
73
|
+
*
|
74
|
+
* data.extend(...)
|
75
|
+
* ```
|
76
|
+
*/
|
77
|
+
export type SettingsData = DataGlobal<SettingsPrototypeMap>
|
78
|
+
|
79
|
+
/**
|
80
|
+
* You can optionally extend this interface to provide type checking and autocompletion for custom input names, like so:
|
81
|
+
* ```ts
|
82
|
+
* declare module "factorio:common" {
|
83
|
+
* export interface CustomInputNames {
|
84
|
+
* "my-custom-event": true
|
85
|
+
* }
|
86
|
+
* }
|
87
|
+
*
|
88
|
+
* // this enables type checking for the following:
|
89
|
+
* script.on_event("my-custom-event", ...)
|
90
|
+
*
|
91
|
+
* data.extend<CustomInputPrototype>([{
|
92
|
+
* type: "custom-input",
|
93
|
+
* name: "my-custom-event", // type checked
|
94
|
+
* }])
|
95
|
+
* ```
|
96
|
+
* @see CustomInputName
|
97
|
+
*/
|
98
|
+
export interface CustomInputNames {}
|
99
|
+
|
100
|
+
/**
|
101
|
+
* All custom event names. See {@link CustomInputNames}.
|
102
|
+
*
|
103
|
+
* If none are specified, this is just `string`.
|
104
|
+
*/
|
105
|
+
export type CustomInputName = [keyof CustomInputNames] extends [never] ? string : keyof CustomInputNames
|
106
|
+
}
|
package/index.d.ts
CHANGED
@@ -1,25 +1,25 @@
|
|
1
|
-
/*
|
2
|
-
This file includes _only_ types for all factorio stages; it declares the factorio:common, factorio:prototype,
|
3
|
-
and factorio:runtime modules.
|
4
|
-
*/
|
5
|
-
/// <reference types="lua-types/5.2" />
|
6
|
-
|
7
|
-
/// <reference path="common/types.d.ts" />
|
8
|
-
|
9
|
-
/// <reference path="settings/types.d.ts" />
|
10
|
-
|
11
|
-
/// <reference path="prototype/generated/prototypes.d.ts" />
|
12
|
-
/// <reference path="prototype/generated/types.d.ts" />
|
13
|
-
|
14
|
-
/// <reference path="runtime/generated/events.d.ts" />
|
15
|
-
/// <reference path="runtime/generated/classes.d.ts" />
|
16
|
-
/// <reference path="runtime/generated/concepts.d.ts" />
|
17
|
-
/// <reference path="runtime/generated/index-types.d.ts" />
|
18
|
-
/// <reference path="runtime/pairs.d.ts" />
|
19
|
-
|
20
|
-
/// <reference path="lualib/index.d.ts" />
|
21
|
-
|
22
|
-
// common globals
|
23
|
-
/// <reference path="common/serpent.d.ts" />
|
24
|
-
/// <reference path="runtime/generated/defines.d.ts" />
|
25
|
-
/// <reference path="runtime/generated/global-functions.d.ts" />
|
1
|
+
/*
|
2
|
+
This file includes _only_ types for all factorio stages; it declares the factorio:common, factorio:prototype,
|
3
|
+
and factorio:runtime modules.
|
4
|
+
*/
|
5
|
+
/// <reference types="lua-types/5.2" />
|
6
|
+
|
7
|
+
/// <reference path="common/types.d.ts" />
|
8
|
+
|
9
|
+
/// <reference path="settings/types.d.ts" />
|
10
|
+
|
11
|
+
/// <reference path="prototype/generated/prototypes.d.ts" />
|
12
|
+
/// <reference path="prototype/generated/types.d.ts" />
|
13
|
+
|
14
|
+
/// <reference path="runtime/generated/events.d.ts" />
|
15
|
+
/// <reference path="runtime/generated/classes.d.ts" />
|
16
|
+
/// <reference path="runtime/generated/concepts.d.ts" />
|
17
|
+
/// <reference path="runtime/generated/index-types.d.ts" />
|
18
|
+
/// <reference path="runtime/pairs.d.ts" />
|
19
|
+
|
20
|
+
/// <reference path="lualib/index.d.ts" />
|
21
|
+
|
22
|
+
// common globals
|
23
|
+
/// <reference path="common/serpent.d.ts" />
|
24
|
+
/// <reference path="runtime/generated/defines.d.ts" />
|
25
|
+
/// <reference path="runtime/generated/global-functions.d.ts" />
|
package/lualib/index.d.ts
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
/// <reference path="util.d.ts" />
|
2
|
-
/// <reference path="mod-gui.d.ts" />
|
1
|
+
/// <reference path="util.d.ts" />
|
2
|
+
/// <reference path="mod-gui.d.ts" />
|
package/lualib/mod-gui.d.ts
CHANGED
@@ -1,12 +1,12 @@
|
|
1
|
-
/** @noSelfInFile */
|
2
|
-
|
3
|
-
/** @noResolution */
|
4
|
-
declare module "mod-gui" {
|
5
|
-
import { FlowGuiElement, FrameGuiElement, LuaPlayer } from "factorio:runtime"
|
6
|
-
const button_style: string
|
7
|
-
const frame_style: string
|
8
|
-
|
9
|
-
function get_button_flow(player: LuaPlayer): FrameGuiElement
|
10
|
-
|
11
|
-
function get_frame_flow(player: LuaPlayer): FlowGuiElement
|
12
|
-
}
|
1
|
+
/** @noSelfInFile */
|
2
|
+
|
3
|
+
/** @noResolution */
|
4
|
+
declare module "mod-gui" {
|
5
|
+
import { FlowGuiElement, FrameGuiElement, LuaPlayer } from "factorio:runtime"
|
6
|
+
const button_style: string
|
7
|
+
const frame_style: string
|
8
|
+
|
9
|
+
function get_button_flow(player: LuaPlayer): FrameGuiElement
|
10
|
+
|
11
|
+
function get_frame_flow(player: LuaPlayer): FlowGuiElement
|
12
|
+
}
|