@gta5urban/types-server 2.1.9 → 2.2.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/index.d.ts +6 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1889,6 +1889,10 @@ declare interface NetworkMp {
|
|
|
1889
1889
|
endBatch(): void;
|
|
1890
1890
|
}
|
|
1891
1891
|
|
|
1892
|
+
declare interface SyncMp {
|
|
1893
|
+
rate: number;
|
|
1894
|
+
}
|
|
1895
|
+
|
|
1892
1896
|
declare interface Mp {
|
|
1893
1897
|
Player: typeof PlayerMp;
|
|
1894
1898
|
players: PlayerMpPool;
|
|
@@ -1929,6 +1933,8 @@ declare interface Mp {
|
|
|
1929
1933
|
|
|
1930
1934
|
joaat(str: string): number;
|
|
1931
1935
|
joaat(strs: string[]): number[];
|
|
1936
|
+
|
|
1937
|
+
sync: SyncMp;
|
|
1932
1938
|
}
|
|
1933
1939
|
|
|
1934
1940
|
declare const mp: Mp;
|