@nativewrappers/server 0.0.108 → 0.0.110
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/entities/Player.d.ts +1 -1
- package/entities/Player.js +1 -1
- package/package.json +1 -1
package/entities/Player.d.ts
CHANGED
|
@@ -5,7 +5,7 @@ export declare class Player {
|
|
|
5
5
|
private readonly source;
|
|
6
6
|
protected type: ClassTypes;
|
|
7
7
|
constructor(source: any);
|
|
8
|
-
fromServerId(serverId: number): Player | null;
|
|
8
|
+
static fromServerId(serverId: number): Player | null;
|
|
9
9
|
/**
|
|
10
10
|
* Get an interable list of players currently on the server
|
|
11
11
|
* @returns Iterable list of Players.
|
package/entities/Player.js
CHANGED