@twin.org/modules 0.0.1-next.17 → 0.0.1-next.19
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/docs/changelog.md
CHANGED
|
@@ -34,11 +34,15 @@ Get the module entry.
|
|
|
34
34
|
|
|
35
35
|
#### Parameters
|
|
36
36
|
|
|
37
|
-
|
|
37
|
+
##### module
|
|
38
|
+
|
|
39
|
+
`string`
|
|
38
40
|
|
|
39
41
|
The module.
|
|
40
42
|
|
|
41
|
-
|
|
43
|
+
##### entry
|
|
44
|
+
|
|
45
|
+
`string`
|
|
42
46
|
|
|
43
47
|
The entry to get from the module.
|
|
44
48
|
|
|
@@ -66,11 +70,15 @@ Get the method from a module.
|
|
|
66
70
|
|
|
67
71
|
#### Parameters
|
|
68
72
|
|
|
69
|
-
|
|
73
|
+
##### module
|
|
74
|
+
|
|
75
|
+
`string`
|
|
70
76
|
|
|
71
77
|
The module.
|
|
72
78
|
|
|
73
|
-
|
|
79
|
+
##### method
|
|
80
|
+
|
|
81
|
+
`string`
|
|
74
82
|
|
|
75
83
|
The method to execute from the module, use dot notation to get a static class method.
|
|
76
84
|
|
|
@@ -98,15 +106,21 @@ Execute the method in the module.
|
|
|
98
106
|
|
|
99
107
|
#### Parameters
|
|
100
108
|
|
|
101
|
-
|
|
109
|
+
##### module
|
|
110
|
+
|
|
111
|
+
`string`
|
|
102
112
|
|
|
103
113
|
The module.
|
|
104
114
|
|
|
105
|
-
|
|
115
|
+
##### method
|
|
116
|
+
|
|
117
|
+
`string`
|
|
106
118
|
|
|
107
119
|
The method to execute from the module.
|
|
108
120
|
|
|
109
|
-
|
|
121
|
+
##### args?
|
|
122
|
+
|
|
123
|
+
`unknown`[]
|
|
110
124
|
|
|
111
125
|
The arguments to pass to the method.
|
|
112
126
|
|
|
@@ -134,15 +148,21 @@ Execute the method in the module in a thread.
|
|
|
134
148
|
|
|
135
149
|
#### Parameters
|
|
136
150
|
|
|
137
|
-
|
|
151
|
+
##### module
|
|
152
|
+
|
|
153
|
+
`string`
|
|
138
154
|
|
|
139
155
|
The module.
|
|
140
156
|
|
|
141
|
-
|
|
157
|
+
##### method
|
|
158
|
+
|
|
159
|
+
`string`
|
|
142
160
|
|
|
143
161
|
The method to execute from the module.
|
|
144
162
|
|
|
145
|
-
|
|
163
|
+
##### args?
|
|
164
|
+
|
|
165
|
+
`unknown`[]
|
|
146
166
|
|
|
147
167
|
The arguments to pass to the method.
|
|
148
168
|
|