@minecraft/server-admin 1.0.0-beta.preview.1.19.50.20 → 1.0.0-beta.preview.1.19.50.22
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/index.d.ts +3 -3
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -17,7 +17,7 @@
|
|
|
17
17
|
* ```json
|
|
18
18
|
* {
|
|
19
19
|
* "module_name": "@minecraft/server-admin",
|
|
20
|
-
* "version": "1.0.0-beta.preview.1.19.50.
|
|
20
|
+
* "version": "1.0.0-beta.preview.1.19.50.22"
|
|
21
21
|
* }
|
|
22
22
|
* ```
|
|
23
23
|
*
|
|
@@ -36,6 +36,7 @@ export class SecretString {
|
|
|
36
36
|
* configuration.
|
|
37
37
|
*/
|
|
38
38
|
export class ServerSecrets {
|
|
39
|
+
protected constructor();
|
|
39
40
|
/**
|
|
40
41
|
* A list of available, configured server secrets.
|
|
41
42
|
*/
|
|
@@ -49,13 +50,13 @@ export class ServerSecrets {
|
|
|
49
50
|
* @param name
|
|
50
51
|
*/
|
|
51
52
|
get(name: string): SecretString;
|
|
52
|
-
protected constructor();
|
|
53
53
|
}
|
|
54
54
|
/**
|
|
55
55
|
* A collection of server variables defined in dedicated server
|
|
56
56
|
* configuration.
|
|
57
57
|
*/
|
|
58
58
|
export class ServerVariables {
|
|
59
|
+
protected constructor();
|
|
59
60
|
/**
|
|
60
61
|
* A list of available, configured server variables.
|
|
61
62
|
*/
|
|
@@ -67,7 +68,6 @@ export class ServerVariables {
|
|
|
67
68
|
* @param name
|
|
68
69
|
*/
|
|
69
70
|
get(name: string): any;
|
|
70
|
-
protected constructor();
|
|
71
71
|
}
|
|
72
72
|
/**
|
|
73
73
|
* A globally available object that returns a list of
|