xray16 1.0.4 → 1.0.5
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/package.json
CHANGED
|
@@ -255,6 +255,10 @@ declare module "xray16" {
|
|
|
255
255
|
public brain(): CAILifeMonsterBrain;
|
|
256
256
|
public has_detector(): boolean;
|
|
257
257
|
public rank(): i32;
|
|
258
|
+
/**
|
|
259
|
+
* @returns object community like `monolith`, `stalker` or `zombied`
|
|
260
|
+
*/
|
|
261
|
+
public community<T extends string>(): T;
|
|
258
262
|
}
|
|
259
263
|
|
|
260
264
|
/**
|
|
@@ -268,10 +272,6 @@ declare module "xray16" {
|
|
|
268
272
|
public profile_name(): string;
|
|
269
273
|
public set_rank(rank: i32): void;
|
|
270
274
|
public reputation(): i32;
|
|
271
|
-
/**
|
|
272
|
-
* @returns object community like `monolith`, `stalker` or `zombied`
|
|
273
|
-
*/
|
|
274
|
-
public community<T extends string>(): T;
|
|
275
275
|
}
|
|
276
276
|
|
|
277
277
|
/**
|
|
@@ -639,7 +639,6 @@ declare module "xray16" {
|
|
|
639
639
|
public reputation(): i32;
|
|
640
640
|
public rank(): i32;
|
|
641
641
|
public set_rank(rank: i32): void;
|
|
642
|
-
public community(): string;
|
|
643
642
|
public profile_name(): string;
|
|
644
643
|
public character_name(): string;
|
|
645
644
|
public character_icon(): string;
|