"Any" should be "any" not "number"

This commit is contained in:
2021-06-25 18:34:32 -05:00
parent 805a116e59
commit cf00c7c212
6 changed files with 34 additions and 28 deletions

View File

@@ -3,15 +3,15 @@
* @public
*/
type Player = number;
type Entity = number;
type Ped = number;
type Vehicle = number;
type Ped = Entity;
type Player = Ped;
type Vehicle = Entity;
type Group = number;
type Hash = number;
type Pickup = Hash;
type Ptfx = number;
type Any = number;
type Thread = number;
type Feature = number;