UNPKG

1.4 kBTypeScriptView Raw
1declare type HudComponent =
2 "all" |
3 "ammo" |
4 "area_name" |
5 "armour" |
6 "breath" |
7 "clock" |
8 "health" |
9 "money" |
10 "radar" |
11 "vehicle_name" |
12 "weapon" |
13 "radio" |
14 "wanted" |
15 "crosshair";
16
17declare type VehicleType =
18 "Automobile" |
19 "Plane" |
20 "Bike" |
21 "Helicopter" |
22 "Boat" |
23 "Train" |
24 "Trailer" |
25 "BMX" |
26 "Monster Truck" |
27 "Quad";
28
29declare type ElementType =
30 "player" |
31 "ped" |
32 "water" |
33 "sound" |
34 "vehicle" |
35 "object" |
36 "pickup" |
37 "marker" |
38 "colshape" |
39 "blip" |
40 "radararea" |
41 "team" |
42 "spawnpoint" |
43 "remoteclient" |
44 "console" |
45 string;
46
47declare type MarkerType = "checkpoint" | "ring" | "cylinder" | "arrow" | "corona";
48
49declare type SFXContainer = "feet" | "genrl" | "pain_a" | "script" | "spc_ea" | "spc_fa" | "spc_ga" | "spc_na" | "spc_pa";
50
51declare type RadioStation =
52 "Adverts" |
53 "Ambience" |
54 "Police" |
55 "Playback FM" |
56 "K-Rose" |
57 "K-DST" |
58 "Cutscene" |
59 "Beats" |
60 "Bounce FM" |
61 "SF-UR" |
62 "Radio Los Santos" |
63 "Radio X" |
64 "CSR 103.9" |
65 "K-Jah West" |
66 "Master Sounds 98.3" |
67 "WCTR";
68
69declare type ResourceState =
70 "loaded" |
71 "running" |
72 "starting" |
73 "stopping" |
74 "failed to load";
\No newline at end of file