@defold-typescript/types 0.19.3 → 0.20.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.
Files changed (86) hide show
  1. package/api-availability.json +2755 -0
  2. package/api-migrations.json +31 -0
  3. package/api-signatures.json +2324 -0
  4. package/api-targets.json +493 -45
  5. package/generated/b2d.d.ts +6 -0
  6. package/generated/b2d_body.d.ts +329 -1
  7. package/generated/b2d_chain.d.ts +106 -0
  8. package/generated/b2d_fixture.d.ts +155 -0
  9. package/generated/b2d_joint.d.ts +823 -0
  10. package/generated/b2d_shape.d.ts +215 -0
  11. package/generated/b2d_world.d.ts +314 -0
  12. package/generated/builtin-messages.d.ts +18 -0
  13. package/generated/camera.d.ts +62 -5
  14. package/generated/compute.d.ts +306 -0
  15. package/generated/go.d.ts +29 -4
  16. package/generated/graphics.d.ts +95 -0
  17. package/generated/gui.d.ts +1 -3
  18. package/generated/json.d.ts +2 -2
  19. package/generated/kinds/gui-script.d.ts +7 -0
  20. package/generated/kinds/render-script.d.ts +7 -0
  21. package/generated/kinds/script.d.ts +7 -0
  22. package/generated/label.d.ts +1 -1
  23. package/generated/liveupdate.d.ts +22 -4
  24. package/generated/material.d.ts +444 -0
  25. package/generated/model.d.ts +46 -5
  26. package/generated/physics.d.ts +1 -3
  27. package/generated/profiler.d.ts +2 -3
  28. package/generated/render.d.ts +25 -9
  29. package/generated/resource.d.ts +2 -2
  30. package/generated/sprite.d.ts +15 -1
  31. package/generated/tilemap.d.ts +14 -0
  32. package/generated/versions/defold-1.12.4/b2d.d.ts +27 -0
  33. package/generated/versions/defold-1.12.4/b2d_body.d.ts +348 -0
  34. package/generated/versions/defold-1.12.4/buffer.d.ts +176 -0
  35. package/generated/versions/defold-1.12.4/camera.d.ts +245 -0
  36. package/generated/versions/defold-1.12.4/collectionfactory.d.ts +146 -0
  37. package/generated/versions/defold-1.12.4/collectionproxy.d.ts +71 -0
  38. package/generated/versions/defold-1.12.4/crash.d.ts +143 -0
  39. package/generated/versions/defold-1.12.4/factory.d.ts +123 -0
  40. package/generated/versions/defold-1.12.4/font.d.ts +81 -0
  41. package/generated/versions/defold-1.12.4/go.d.ts +1029 -0
  42. package/generated/versions/defold-1.12.4/graphics.d.ts +226 -0
  43. package/generated/versions/defold-1.12.4/gui.d.ts +2372 -0
  44. package/generated/versions/defold-1.12.4/html5.d.ts +53 -0
  45. package/generated/versions/defold-1.12.4/http.d.ts +84 -0
  46. package/generated/versions/defold-1.12.4/iac.d.ts +18 -0
  47. package/generated/versions/defold-1.12.4/iap.d.ts +60 -0
  48. package/generated/versions/defold-1.12.4/image.d.ts +139 -0
  49. package/generated/versions/defold-1.12.4/index.d.ts +41 -0
  50. package/generated/versions/defold-1.12.4/json.d.ts +76 -0
  51. package/generated/versions/defold-1.12.4/label.d.ts +94 -0
  52. package/generated/versions/defold-1.12.4/liveupdate.d.ts +122 -0
  53. package/generated/versions/defold-1.12.4/model.d.ts +205 -0
  54. package/generated/versions/defold-1.12.4/msg.d.ts +10 -0
  55. package/generated/versions/defold-1.12.4/particlefx.d.ts +166 -0
  56. package/generated/versions/defold-1.12.4/physics.d.ts +547 -0
  57. package/generated/versions/defold-1.12.4/profiler.d.ts +234 -0
  58. package/generated/versions/defold-1.12.4/push.d.ts +66 -0
  59. package/generated/versions/defold-1.12.4/render.d.ts +1149 -0
  60. package/generated/versions/defold-1.12.4/resource.d.ts +1518 -0
  61. package/generated/versions/defold-1.12.4/socket.d.ts +795 -0
  62. package/generated/versions/defold-1.12.4/sound.d.ts +291 -0
  63. package/generated/versions/defold-1.12.4/sprite.d.ts +143 -0
  64. package/generated/versions/defold-1.12.4/sys.d.ts +695 -0
  65. package/generated/versions/defold-1.12.4/tilemap.d.ts +181 -0
  66. package/generated/versions/defold-1.12.4/timer.d.ts +114 -0
  67. package/generated/versions/defold-1.12.4/types.d.ts +61 -0
  68. package/generated/versions/defold-1.12.4/vmath.d.ts +806 -0
  69. package/generated/versions/defold-1.12.4/webview.d.ts +68 -0
  70. package/generated/versions/defold-1.12.4/window.d.ts +198 -0
  71. package/generated/versions/defold-1.12.4/zlib.d.ts +40 -0
  72. package/index.d.ts +22 -0
  73. package/package.json +8 -1
  74. package/scripts/fidelity-audit.ts +69 -12
  75. package/scripts/fidelity-baseline.json +56 -0
  76. package/scripts/generate-api-availability.ts +139 -0
  77. package/scripts/generate-api-signatures.ts +66 -0
  78. package/scripts/import-defold-release.ts +480 -0
  79. package/scripts/regen.ts +53 -6
  80. package/scripts/sync-api-docs.ts +89 -41
  81. package/src/api-availability.ts +0 -0
  82. package/src/core-types.ts +9 -0
  83. package/src/emit-dts.ts +674 -17
  84. package/src/emit-messages.ts +72 -2
  85. package/src/index.ts +26 -1
  86. package/src/lifecycle.ts +43 -2
@@ -0,0 +1,2324 @@
1
+ {
2
+ "versions": {
3
+ "1.13.0": {
4
+ "b2d\u0000FUNCTION\u0000b2d.get_body\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"b2Body\"],\"isOptional\":false}]": "function get_body(url: string | Hash | Url): Opaque<\"b2Body\">;",
5
+ "b2d\u0000FUNCTION\u0000b2d.get_version\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_version(): { version: number; major: number; middle: number; minor: number };",
6
+ "b2d\u0000FUNCTION\u0000b2d.get_world\u0000[]->[{\"types\":[\"b2World\"],\"isOptional\":false}]": "function get_world(): Opaque<\"b2World\">;",
7
+ "b2d\u0000TYPEDEF\u0000b2Body\u0000": "type b2Body = Opaque<\"b2Body\">;",
8
+ "b2d\u0000TYPEDEF\u0000b2World\u0000": "type b2World = Opaque<\"b2World\">;",
9
+ "b2d.body\u0000CONSTANT\u0000b2d.body.B2_DYNAMIC_BODY\u0000": "const B2_DYNAMIC_BODY: number & { readonly __brand: \"b2d.body.B2_DYNAMIC_BODY\" };",
10
+ "b2d.body\u0000CONSTANT\u0000b2d.body.B2_KINEMATIC_BODY\u0000": "const B2_KINEMATIC_BODY: number & { readonly __brand: \"b2d.body.B2_KINEMATIC_BODY\" };",
11
+ "b2d.body\u0000CONSTANT\u0000b2d.body.B2_STATIC_BODY\u0000": "const B2_STATIC_BODY: number & { readonly __brand: \"b2d.body.B2_STATIC_BODY\" };",
12
+ "b2d.body\u0000FUNCTION\u0000b2d.body.apply_angular_impulse\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function apply_angular_impulse(body: Opaque<\"b2Body\">, impulse: number): void;",
13
+ "b2d.body\u0000FUNCTION\u0000b2d.body.apply_force\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[]": "function apply_force(body: Opaque<\"b2Body\">, force: Vector3, point: Vector3): void;",
14
+ "b2d.body\u0000FUNCTION\u0000b2d.body.apply_force_to_center\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[]": "function apply_force_to_center(body: Opaque<\"b2Body\">, force: Vector3): void;",
15
+ "b2d.body\u0000FUNCTION\u0000b2d.body.apply_linear_impulse\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[]": "function apply_linear_impulse(body: Opaque<\"b2Body\">, impulse: Vector3, point: Vector3): void;",
16
+ "b2d.body\u0000FUNCTION\u0000b2d.body.apply_linear_impulse_to_center\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[]": "function apply_linear_impulse_to_center(body: Opaque<\"b2Body\">, impulse: Vector3): void;",
17
+ "b2d.body\u0000FUNCTION\u0000b2d.body.apply_torque\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function apply_torque(body: Opaque<\"b2Body\">, torque: number): void;",
18
+ "b2d.body\u0000FUNCTION\u0000b2d.body.compute_aabb\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function compute_aabb(body: Opaque<\"b2Body\">): { lower: Vector3; upper: Vector3 };",
19
+ "b2d.body\u0000FUNCTION\u0000b2d.body.create_chain\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"b2Chain\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]": "function create_chain(body: Opaque<\"b2Body\">, definition: Record<string | number, unknown>): LuaMultiReturn<[Opaque<\"b2Chain\">, { shape_id: number }[]]>;",
20
+ "b2d.body\u0000FUNCTION\u0000b2d.body.create_fixture\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"b2Shape\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function create_fixture(body: Opaque<\"b2Body\">, shape: Opaque<\"b2Shape\">, density: number): void;",
21
+ "b2d.body\u0000FUNCTION\u0000b2d.body.create_fixture\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function create_fixture(body: Opaque<\"b2Body\">, definition: { shape?: { type?: number; radius?: number; center?: Vector3; v0?: Vector3; v1?: Vector3; v2?: Vector3; v3?: Vector3; vertices?: Vector3[]; hx?: number; hy?: number; angle?: number; loop?: boolean; prev_vertex?: Vector3; next_vertex?: Vector3 }; friction?: number; restitution?: number; density?: number; sensor?: boolean; filter?: { category_bits?: number; mask_bits?: number; group_index?: number } }): { index: number; type: number; sensor: boolean; density: number; friction: number; restitution: number; child_count: number };",
22
+ "b2d.body\u0000FUNCTION\u0000b2d.body.create_shape\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function create_shape(body: Opaque<\"b2Body\">, definition: Record<string | number, unknown>): void;",
23
+ "b2d.body\u0000FUNCTION\u0000b2d.body.destroy_fixture\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function destroy_fixture(body: Opaque<\"b2Body\">, fixture_index: number): void;",
24
+ "b2d.body\u0000FUNCTION\u0000b2d.body.destroy_shape\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function destroy_shape(body: Opaque<\"b2Body\">, shape_index: number): void;",
25
+ "b2d.body\u0000FUNCTION\u0000b2d.body.dump\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[]": "function dump(body: Opaque<\"b2Body\">): void;",
26
+ "b2d.body\u0000FUNCTION\u0000b2d.body.enable_contact_events\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable_contact_events(body: Opaque<\"b2Body\">, enable: boolean): void;",
27
+ "b2d.body\u0000FUNCTION\u0000b2d.body.enable_hit_events\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable_hit_events(body: Opaque<\"b2Body\">, enable: boolean): void;",
28
+ "b2d.body\u0000FUNCTION\u0000b2d.body.enable_sleep\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable_sleep(body: Opaque<\"b2Body\">, enable: boolean): void;",
29
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_angle\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_angle(body: Opaque<\"b2Body\">): number;",
30
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_angular_damping\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_angular_damping(body: Opaque<\"b2Body\">): number;",
31
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_angular_velocity\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_angular_velocity(body: Opaque<\"b2Body\">): number;",
32
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_contact_data\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_contact_data(body: Opaque<\"b2Body\">): Record<string | number, unknown>;",
33
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_contact_list\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"b2ContactEdge\"],\"isOptional\":false}]": "function get_contact_list(body: Opaque<\"b2Body\">): Opaque<\"b2ContactEdge\">;",
34
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_fixtures\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_fixtures(body: Opaque<\"b2Body\">): { index: number; type: number; sensor: boolean; density: number; friction: number; restitution: number; child_count: number }[];",
35
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_force\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_force(body: Opaque<\"b2Body\">): Vector3;",
36
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_gravity_scale\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_gravity_scale(body: Opaque<\"b2Body\">): number;",
37
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_inertia\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_inertia(body: Opaque<\"b2Body\">): number;",
38
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_joints\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_joints(body: Opaque<\"b2Body\">): number[];",
39
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_linear_damping\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_linear_damping(body: Opaque<\"b2Body\">): number;",
40
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_linear_velocity\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_linear_velocity(body: Opaque<\"b2Body\">): Vector3;",
41
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_linear_velocity_from_local_point\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_linear_velocity_from_local_point(body: Opaque<\"b2Body\">, local_point: Vector3): Vector3;",
42
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_linear_velocity_from_world_point\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_linear_velocity_from_world_point(body: Opaque<\"b2Body\">, world_point: Vector3): Vector3;",
43
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_local_center\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_local_center(body: Opaque<\"b2Body\">): Vector3;",
44
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_local_center_of_mass\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_local_center_of_mass(body: Opaque<\"b2Body\">): Vector3;",
45
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_local_point\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_local_point(body: Opaque<\"b2Body\">, world_point: Vector3): Vector3;",
46
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_local_vector\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_local_vector(body: Opaque<\"b2Body\">, world_vector: Vector3): Vector3;",
47
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_mass\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_mass(body: Opaque<\"b2Body\">): number;",
48
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_mass_data\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"b2MassData\"],\"isOptional\":false}]": "function get_mass_data(body: Opaque<\"b2Body\">): Opaque<\"b2MassData\">;",
49
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_mass_data\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_mass_data(body: Opaque<\"b2Body\">): { mass: number; center: Vector3; inertia: number };",
50
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_name\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_name(body: Opaque<\"b2Body\">): string;",
51
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_next\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"b2Body\"],\"isOptional\":false}]": "function get_next(body: Opaque<\"b2Body\">): Opaque<\"b2Body\">;",
52
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_position\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_position(body: Opaque<\"b2Body\">): Vector3;",
53
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_rotational_inertia\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_rotational_inertia(body: Opaque<\"b2Body\">): number;",
54
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_shapes\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_shapes(body: Opaque<\"b2Body\">): { shape_id: number }[];",
55
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_sleep_threshold\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_sleep_threshold(body: Opaque<\"b2Body\">): number;",
56
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_transform\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"b2Transform\"],\"isOptional\":false}]": "function get_transform(body: Opaque<\"b2Body\">): Opaque<\"b2Transform\">;",
57
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_transform\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_transform(body: Opaque<\"b2Body\">): { position: Vector3; angle: number };",
58
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_type\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"b2BodyType\"],\"isOptional\":false}]": "function get_type(body: Opaque<\"b2Body\">): (number & { readonly __brand: \"b2d.body.B2_DYNAMIC_BODY\" }) | (number & { readonly __brand: \"b2d.body.B2_KINEMATIC_BODY\" }) | (number & { readonly __brand: \"b2d.body.B2_STATIC_BODY\" });",
59
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_user_data\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_user_data(body: Opaque<\"b2Body\">): Hash;",
60
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_world\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"b2World\"],\"isOptional\":false}]": "function get_world(body: Opaque<\"b2Body\">): Opaque<\"b2World\">;",
61
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_world_center\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_world_center(body: Opaque<\"b2Body\">): number;",
62
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_world_center\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_world_center(body: Opaque<\"b2Body\">): Vector3;",
63
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_world_center_of_mass\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_world_center_of_mass(body: Opaque<\"b2Body\">): Vector3;",
64
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_world_point\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_world_point(body: Opaque<\"b2Body\">, local_vector: Vector3): Vector3;",
65
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_world_vector\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_world_vector(body: Opaque<\"b2Body\">, local_vector: Vector3): Vector3;",
66
+ "b2d.body\u0000FUNCTION\u0000b2d.body.is_active\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_active(body: Opaque<\"b2Body\">): boolean;",
67
+ "b2d.body\u0000FUNCTION\u0000b2d.body.is_awake\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_awake(body: Opaque<\"b2Body\">): boolean;",
68
+ "b2d.body\u0000FUNCTION\u0000b2d.body.is_bullet\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_bullet(body: Opaque<\"b2Body\">): boolean;",
69
+ "b2d.body\u0000FUNCTION\u0000b2d.body.is_fixed_rotation\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_fixed_rotation(body: Opaque<\"b2Body\">): boolean;",
70
+ "b2d.body\u0000FUNCTION\u0000b2d.body.is_sleeping_allowed\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_sleeping_allowed(body: Opaque<\"b2Body\">): boolean;",
71
+ "b2d.body\u0000FUNCTION\u0000b2d.body.is_sleeping_enabled\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_sleeping_enabled(body: Opaque<\"b2Body\">): boolean;",
72
+ "b2d.body\u0000FUNCTION\u0000b2d.body.is_valid\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_valid(body: Opaque<\"b2Body\">): boolean;",
73
+ "b2d.body\u0000FUNCTION\u0000b2d.body.reset_mass_data\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[]": "function reset_mass_data(body: Opaque<\"b2Body\">): void;",
74
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_active\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_active(body: Opaque<\"b2Body\">, enable: boolean): void;",
75
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_angular_damping\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_angular_damping(body: Opaque<\"b2Body\">, damping: number): void;",
76
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_angular_velocity\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_angular_velocity(body: Opaque<\"b2Body\">, omega: number): void;",
77
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_awake\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_awake(body: Opaque<\"b2Body\">, enable: boolean): void;",
78
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_bullet\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_bullet(body: Opaque<\"b2Body\">, enable: boolean): void;",
79
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_fixed_rotation\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_fixed_rotation(body: Opaque<\"b2Body\">, enable: boolean): void;",
80
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_gravity_scale\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_gravity_scale(body: Opaque<\"b2Body\">, scale: number): void;",
81
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_linear_damping\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_linear_damping(body: Opaque<\"b2Body\">, damping: number): void;",
82
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_linear_velocity\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[]": "function set_linear_velocity(body: Opaque<\"b2Body\">, velocity: Vector3): void;",
83
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_mass_data\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"b2MassData\"],\"isOptional\":false}]->[]": "function set_mass_data(body: Opaque<\"b2Body\">, data: Opaque<\"b2MassData\">): void;",
84
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_mass_data\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function set_mass_data(body: Opaque<\"b2Body\">, data: { mass?: number; center?: Vector3; inertia?: number }): void;",
85
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_name\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function set_name(body: Opaque<\"b2Body\">, name: string): void;",
86
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_sleep_threshold\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_sleep_threshold(body: Opaque<\"b2Body\">, threshold: number): void;",
87
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_sleeping_allowed\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_sleeping_allowed(body: Opaque<\"b2Body\">, enable: boolean): void;",
88
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_target_transform\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_target_transform(body: Opaque<\"b2Body\">, position: Vector3, angle: number, time_step: number): void;",
89
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_transform\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_transform(body: Opaque<\"b2Body\">, position: Vector3, angle: number): void;",
90
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_type\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"b2BodyType\"],\"isOptional\":false}]->[]": "function set_type(body: Opaque<\"b2Body\">, type: (number & { readonly __brand: \"b2d.body.B2_DYNAMIC_BODY\" }) | (number & { readonly __brand: \"b2d.body.B2_KINEMATIC_BODY\" }) | (number & { readonly __brand: \"b2d.body.B2_STATIC_BODY\" })): void;",
91
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_user_data\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"hash\"],\"isOptional\":false}]->[]": "function set_user_data(body: Opaque<\"b2Body\">, id: Hash): void;",
92
+ "b2d.body\u0000TYPEDEF\u0000b2Body\u0000": "type b2Body = Opaque<\"b2Body\">;",
93
+ "b2d.body\u0000TYPEDEF\u0000b2World\u0000": "type b2World = Opaque<\"b2World\">;",
94
+ "b2d.chain\u0000FUNCTION\u0000b2d.chain.destroy\u0000[{\"types\":[\"b2Chain\"],\"isOptional\":false}]->[]": "function destroy(chain: Opaque<\"b2Chain\">): void;",
95
+ "b2d.chain\u0000FUNCTION\u0000b2d.chain.from_shape\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false}]->[{\"types\":[\"b2Chain\",\"nil\"],\"isOptional\":false}]": "function from_shape(shape_id: Opaque<\"b2Shape\">): Opaque<\"b2Chain\"> | unknown;",
96
+ "b2d.chain\u0000FUNCTION\u0000b2d.chain.get_friction\u0000[{\"types\":[\"b2Chain\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_friction(chain: Opaque<\"b2Chain\">): number;",
97
+ "b2d.chain\u0000FUNCTION\u0000b2d.chain.get_geometry\u0000[{\"types\":[\"b2Chain\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_geometry(chain: Opaque<\"b2Chain\">): Record<string | number, unknown>;",
98
+ "b2d.chain\u0000FUNCTION\u0000b2d.chain.get_material\u0000[{\"types\":[\"b2Chain\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_material(chain: Opaque<\"b2Chain\">): number;",
99
+ "b2d.chain\u0000FUNCTION\u0000b2d.chain.get_restitution\u0000[{\"types\":[\"b2Chain\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_restitution(chain: Opaque<\"b2Chain\">): number;",
100
+ "b2d.chain\u0000FUNCTION\u0000b2d.chain.get_segment_count\u0000[{\"types\":[\"b2Chain\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_segment_count(chain: Opaque<\"b2Chain\">): number;",
101
+ "b2d.chain\u0000FUNCTION\u0000b2d.chain.get_segments\u0000[{\"types\":[\"b2Chain\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_segments(chain: Opaque<\"b2Chain\">): { shape_id: number }[];",
102
+ "b2d.chain\u0000FUNCTION\u0000b2d.chain.get_world\u0000[{\"types\":[\"b2Chain\"],\"isOptional\":false}]->[{\"types\":[\"b2World\"],\"isOptional\":false}]": "function get_world(chain: Opaque<\"b2Chain\">): Opaque<\"b2World\">;",
103
+ "b2d.chain\u0000FUNCTION\u0000b2d.chain.is_valid\u0000[{\"types\":[\"b2Chain\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_valid(chain: Opaque<\"b2Chain\">): boolean;",
104
+ "b2d.chain\u0000FUNCTION\u0000b2d.chain.set_friction\u0000[{\"types\":[\"b2Chain\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_friction(chain: Opaque<\"b2Chain\">, friction: number): void;",
105
+ "b2d.chain\u0000FUNCTION\u0000b2d.chain.set_material\u0000[{\"types\":[\"b2Chain\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_material(chain: Opaque<\"b2Chain\">, material: number): void;",
106
+ "b2d.chain\u0000FUNCTION\u0000b2d.chain.set_restitution\u0000[{\"types\":[\"b2Chain\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_restitution(chain: Opaque<\"b2Chain\">, restitution: number): void;",
107
+ "b2d.chain\u0000TYPEDEF\u0000b2Chain\u0000": "type b2Chain = Opaque<\"b2Chain\">;",
108
+ "b2d.fixture\u0000FUNCTION\u0000b2d.fixture.get_aabb\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_aabb(body: Opaque<\"b2Body\">, fixture_index: number, child_index: number): { lower: Vector3; upper: Vector3 };",
109
+ "b2d.fixture\u0000FUNCTION\u0000b2d.fixture.get_density\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_density(body: Opaque<\"b2Body\">, fixture_index: number): number;",
110
+ "b2d.fixture\u0000FUNCTION\u0000b2d.fixture.get_filter_data\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_filter_data(body: Opaque<\"b2Body\">, fixture_index: number, child_index: number): { category_bits: number; mask_bits: number; group_index: number };",
111
+ "b2d.fixture\u0000FUNCTION\u0000b2d.fixture.get_friction\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_friction(body: Opaque<\"b2Body\">, fixture_index: number): number;",
112
+ "b2d.fixture\u0000FUNCTION\u0000b2d.fixture.get_restitution\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_restitution(body: Opaque<\"b2Body\">, fixture_index: number): number;",
113
+ "b2d.fixture\u0000FUNCTION\u0000b2d.fixture.get_shape\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_shape(body: Opaque<\"b2Body\">, fixture_index: number): { type: number; radius?: number; center?: Vector3; v0?: Vector3; v1?: Vector3; v2?: Vector3; v3?: Vector3; vertices?: Vector3[]; hx?: number; hy?: number; angle?: number; loop?: boolean; prev_vertex?: Vector3; next_vertex?: Vector3 };",
114
+ "b2d.fixture\u0000FUNCTION\u0000b2d.fixture.get_type\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_type(body: Opaque<\"b2Body\">, fixture_index: number): number;",
115
+ "b2d.fixture\u0000FUNCTION\u0000b2d.fixture.is_sensor\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_sensor(body: Opaque<\"b2Body\">, fixture_index: number): boolean;",
116
+ "b2d.fixture\u0000FUNCTION\u0000b2d.fixture.refilter\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function refilter(body: Opaque<\"b2Body\">, fixture_index: number, touch_proxies: boolean): void;",
117
+ "b2d.fixture\u0000FUNCTION\u0000b2d.fixture.set_density\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_density(body: Opaque<\"b2Body\">, fixture_index: number, density: number, update_mass: boolean): void;",
118
+ "b2d.fixture\u0000FUNCTION\u0000b2d.fixture.set_filter_data\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function set_filter_data(body: Opaque<\"b2Body\">, fixture_index: number, child_index: number, filter: { category_bits?: number; mask_bits?: number; group_index?: number }): void;",
119
+ "b2d.fixture\u0000FUNCTION\u0000b2d.fixture.set_friction\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_friction(body: Opaque<\"b2Body\">, fixture_index: number, friction: number): void;",
120
+ "b2d.fixture\u0000FUNCTION\u0000b2d.fixture.set_restitution\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_restitution(body: Opaque<\"b2Body\">, fixture_index: number, restitution: number): void;",
121
+ "b2d.fixture\u0000FUNCTION\u0000b2d.fixture.set_sensor\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_sensor(body: Opaque<\"b2Body\">, fixture_index: number, enabled: boolean): void;",
122
+ "b2d.fixture\u0000FUNCTION\u0000b2d.fixture.set_shape\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_shape(body: Opaque<\"b2Body\">, fixture_index: number, shape: { type?: number; radius?: number; center?: Vector3; v0?: Vector3; v1?: Vector3; v2?: Vector3; v3?: Vector3; vertices?: Vector3[]; hx?: number; hy?: number; angle?: number; loop?: boolean; prev_vertex?: Vector3; next_vertex?: Vector3 }, update_mass: boolean): void;",
123
+ "b2d.fixture\u0000FUNCTION\u0000b2d.fixture.test_point\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function test_point(body: Opaque<\"b2Body\">, fixture_index: number, point: Vector3): boolean;",
124
+ "b2d.joint\u0000CONSTANT\u0000b2d.joint.JOINT_TYPE_DISTANCE\u0000": "const JOINT_TYPE_DISTANCE: number & { readonly __brand: \"b2d.joint.JOINT_TYPE_DISTANCE\" };",
125
+ "b2d.joint\u0000CONSTANT\u0000b2d.joint.JOINT_TYPE_FILTER\u0000": "const JOINT_TYPE_FILTER: number & { readonly __brand: \"b2d.joint.JOINT_TYPE_FILTER\" };",
126
+ "b2d.joint\u0000CONSTANT\u0000b2d.joint.JOINT_TYPE_FRICTION\u0000": "const JOINT_TYPE_FRICTION: number & { readonly __brand: \"b2d.joint.JOINT_TYPE_FRICTION\" };",
127
+ "b2d.joint\u0000CONSTANT\u0000b2d.joint.JOINT_TYPE_GEAR\u0000": "const JOINT_TYPE_GEAR: number & { readonly __brand: \"b2d.joint.JOINT_TYPE_GEAR\" };",
128
+ "b2d.joint\u0000CONSTANT\u0000b2d.joint.JOINT_TYPE_MOTOR\u0000": "const JOINT_TYPE_MOTOR: number & { readonly __brand: \"b2d.joint.JOINT_TYPE_MOTOR\" };",
129
+ "b2d.joint\u0000CONSTANT\u0000b2d.joint.JOINT_TYPE_MOUSE\u0000": "const JOINT_TYPE_MOUSE: number & { readonly __brand: \"b2d.joint.JOINT_TYPE_MOUSE\" };",
130
+ "b2d.joint\u0000CONSTANT\u0000b2d.joint.JOINT_TYPE_PRISMATIC\u0000": "const JOINT_TYPE_PRISMATIC: number & { readonly __brand: \"b2d.joint.JOINT_TYPE_PRISMATIC\" };",
131
+ "b2d.joint\u0000CONSTANT\u0000b2d.joint.JOINT_TYPE_PULLEY\u0000": "const JOINT_TYPE_PULLEY: number & { readonly __brand: \"b2d.joint.JOINT_TYPE_PULLEY\" };",
132
+ "b2d.joint\u0000CONSTANT\u0000b2d.joint.JOINT_TYPE_REVOLUTE\u0000": "const JOINT_TYPE_REVOLUTE: number & { readonly __brand: \"b2d.joint.JOINT_TYPE_REVOLUTE\" };",
133
+ "b2d.joint\u0000CONSTANT\u0000b2d.joint.JOINT_TYPE_ROPE\u0000": "const JOINT_TYPE_ROPE: number & { readonly __brand: \"b2d.joint.JOINT_TYPE_ROPE\" };",
134
+ "b2d.joint\u0000CONSTANT\u0000b2d.joint.JOINT_TYPE_UNKNOWN\u0000": "const JOINT_TYPE_UNKNOWN: number & { readonly __brand: \"b2d.joint.JOINT_TYPE_UNKNOWN\" };",
135
+ "b2d.joint\u0000CONSTANT\u0000b2d.joint.JOINT_TYPE_WELD\u0000": "const JOINT_TYPE_WELD: number & { readonly __brand: \"b2d.joint.JOINT_TYPE_WELD\" };",
136
+ "b2d.joint\u0000CONSTANT\u0000b2d.joint.JOINT_TYPE_WHEEL\u0000": "const JOINT_TYPE_WHEEL: number & { readonly __brand: \"b2d.joint.JOINT_TYPE_WHEEL\" };",
137
+ "b2d.joint\u0000CONSTANT\u0000b2d.joint.LIMIT_STATE_AT_LOWER\u0000": "const LIMIT_STATE_AT_LOWER: number & { readonly __brand: \"b2d.joint.LIMIT_STATE_AT_LOWER\" };",
138
+ "b2d.joint\u0000CONSTANT\u0000b2d.joint.LIMIT_STATE_AT_UPPER\u0000": "const LIMIT_STATE_AT_UPPER: number & { readonly __brand: \"b2d.joint.LIMIT_STATE_AT_UPPER\" };",
139
+ "b2d.joint\u0000CONSTANT\u0000b2d.joint.LIMIT_STATE_EQUAL\u0000": "const LIMIT_STATE_EQUAL: number & { readonly __brand: \"b2d.joint.LIMIT_STATE_EQUAL\" };",
140
+ "b2d.joint\u0000CONSTANT\u0000b2d.joint.LIMIT_STATE_INACTIVE\u0000": "const LIMIT_STATE_INACTIVE: number & { readonly __brand: \"b2d.joint.LIMIT_STATE_INACTIVE\" };",
141
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.create_distance\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"b2Joint\"],\"isOptional\":false}]": "function create_distance(body_a: Opaque<\"b2Body\">, body_b: Opaque<\"b2Body\">, definition: { local_anchor_a?: Vector3; local_anchor_b?: Vector3; length?: number; frequency?: number; damping_ratio?: number; collide_connected?: boolean }): Opaque<\"b2Joint\">;",
142
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.create_filter\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"b2Joint\"],\"isOptional\":false}]": "function create_filter(body_a: Opaque<\"b2Body\">, body_b: Opaque<\"b2Body\">, definition: Record<string | number, unknown>): Opaque<\"b2Joint\">;",
143
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.create_friction\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"b2Joint\"],\"isOptional\":false}]": "function create_friction(body_a: Opaque<\"b2Body\">, body_b: Opaque<\"b2Body\">, definition: { local_anchor_a?: Vector3; local_anchor_b?: Vector3; max_force?: number; max_torque?: number; collide_connected?: boolean }): Opaque<\"b2Joint\">;",
144
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.create_gear\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"b2Joint\"],\"isOptional\":false}]": "function create_gear(joint1: Opaque<\"b2Joint\">, joint2: Opaque<\"b2Joint\">, definition: { ratio?: number }): Opaque<\"b2Joint\">;",
145
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.create_motor\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"b2Joint\"],\"isOptional\":false}]": "function create_motor(body_a: Opaque<\"b2Body\">, body_b: Opaque<\"b2Body\">, definition: { linear_offset?: Vector3; angular_offset?: number; max_force?: number; max_torque?: number; correction_factor?: number; collide_connected?: boolean }): Opaque<\"b2Joint\">;",
146
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.create_mouse\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"b2Joint\"],\"isOptional\":false}]": "function create_mouse(body_a: Opaque<\"b2Body\">, body_b: Opaque<\"b2Body\">, definition: { target?: Vector3; max_force?: number; frequency?: number; damping_ratio?: number; collide_connected?: boolean }): Opaque<\"b2Joint\">;",
147
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.create_prismatic\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"b2Joint\"],\"isOptional\":false}]": "function create_prismatic(body_a: Opaque<\"b2Body\">, body_b: Opaque<\"b2Body\">, definition: { local_anchor_a?: Vector3; local_anchor_b?: Vector3; local_axis_a?: Vector3; reference_angle?: number; enable_limit?: boolean; lower_translation?: number; upper_translation?: number; enable_motor?: boolean; max_motor_force?: number; motor_speed?: number; collide_connected?: boolean }): Opaque<\"b2Joint\">;",
148
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.create_pulley\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"b2Joint\"],\"isOptional\":false}]": "function create_pulley(body_a: Opaque<\"b2Body\">, body_b: Opaque<\"b2Body\">, definition: { ground_anchor_a?: Vector3; ground_anchor_b?: Vector3; local_anchor_a?: Vector3; local_anchor_b?: Vector3; length_a?: number; length_b?: number; ratio?: number; collide_connected?: boolean }): Opaque<\"b2Joint\">;",
149
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.create_revolute\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"b2Joint\"],\"isOptional\":false}]": "function create_revolute(body_a: Opaque<\"b2Body\">, body_b: Opaque<\"b2Body\">, definition: { local_anchor_a?: Vector3; local_anchor_b?: Vector3; reference_angle?: number; enable_limit?: boolean; lower_angle?: number; upper_angle?: number; enable_motor?: boolean; max_motor_torque?: number; motor_speed?: number; collide_connected?: boolean }): Opaque<\"b2Joint\">;",
150
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.create_rope\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"b2Joint\"],\"isOptional\":false}]": "function create_rope(body_a: Opaque<\"b2Body\">, body_b: Opaque<\"b2Body\">, definition: { local_anchor_a?: Vector3; local_anchor_b?: Vector3; max_length?: number; collide_connected?: boolean }): Opaque<\"b2Joint\">;",
151
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.create_weld\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"b2Joint\"],\"isOptional\":false}]": "function create_weld(body_a: Opaque<\"b2Body\">, body_b: Opaque<\"b2Body\">, definition: { local_anchor_a?: Vector3; local_anchor_b?: Vector3; reference_angle?: number; frequency?: number; damping_ratio?: number; collide_connected?: boolean }): Opaque<\"b2Joint\">;",
152
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.create_wheel\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"b2Joint\"],\"isOptional\":false}]": "function create_wheel(body_a: Opaque<\"b2Body\">, body_b: Opaque<\"b2Body\">, definition: { local_anchor_a?: Vector3; local_anchor_b?: Vector3; local_axis_a?: Vector3; enable_motor?: boolean; max_motor_torque?: number; motor_speed?: number; frequency?: number; damping_ratio?: number; collide_connected?: boolean }): Opaque<\"b2Joint\">;",
153
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.destroy\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[]": "function destroy(joint: Opaque<\"b2Joint\">): void;",
154
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.enable_limit\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable_limit(joint: Opaque<\"b2Joint\">, enable: boolean): void;",
155
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.enable_motor\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable_motor(joint: Opaque<\"b2Joint\">, enable: boolean): void;",
156
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.enable_spring\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable_spring(joint: Opaque<\"b2Joint\">, enable: boolean): void;",
157
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_anchor_a\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_anchor_a(joint: Opaque<\"b2Joint\">): Vector3;",
158
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_anchor_b\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_anchor_b(joint: Opaque<\"b2Joint\">): Vector3;",
159
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_angular_damping_ratio\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_angular_damping_ratio(joint: Opaque<\"b2Joint\">): number;",
160
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_angular_hertz\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_angular_hertz(joint: Opaque<\"b2Joint\">): number;",
161
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_angular_offset\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_angular_offset(joint: Opaque<\"b2Joint\">): number;",
162
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_body_a\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"b2Body\"],\"isOptional\":false}]": "function get_body_a(joint: Opaque<\"b2Joint\">): Opaque<\"b2Body\">;",
163
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_body_b\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"b2Body\"],\"isOptional\":false}]": "function get_body_b(joint: Opaque<\"b2Joint\">): Opaque<\"b2Body\">;",
164
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_collide_connected\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_collide_connected(joint: Opaque<\"b2Joint\">): boolean;",
165
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_correction_factor\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_correction_factor(joint: Opaque<\"b2Joint\">): number;",
166
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_current_length\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_current_length(joint: Opaque<\"b2Joint\">): number;",
167
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_damping_ratio\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_damping_ratio(joint: Opaque<\"b2Joint\">): number;",
168
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_frequency\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_frequency(joint: Opaque<\"b2Joint\">): number;",
169
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_ground_anchor_a\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_ground_anchor_a(joint: Opaque<\"b2Joint\">): Vector3;",
170
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_ground_anchor_b\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_ground_anchor_b(joint: Opaque<\"b2Joint\">): Vector3;",
171
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_hertz\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_hertz(joint: Opaque<\"b2Joint\">): number;",
172
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_joint1\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"b2Joint\"],\"isOptional\":false}]": "function get_joint1(joint: Opaque<\"b2Joint\">): Opaque<\"b2Joint\">;",
173
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_joint2\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"b2Joint\"],\"isOptional\":false}]": "function get_joint2(joint: Opaque<\"b2Joint\">): Opaque<\"b2Joint\">;",
174
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_joint_angle\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_joint_angle(joint: Opaque<\"b2Joint\">): number;",
175
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_joint_speed\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_joint_speed(joint: Opaque<\"b2Joint\">): number;",
176
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_joint_translation\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_joint_translation(joint: Opaque<\"b2Joint\">): number;",
177
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_length\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_length(joint: Opaque<\"b2Joint\">): number;",
178
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_length_a\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_length_a(joint: Opaque<\"b2Joint\">): number;",
179
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_length_b\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_length_b(joint: Opaque<\"b2Joint\">): number;",
180
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_limit_state\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_limit_state(joint: Opaque<\"b2Joint\">): number;",
181
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_linear_damping_ratio\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_linear_damping_ratio(joint: Opaque<\"b2Joint\">): number;",
182
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_linear_hertz\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_linear_hertz(joint: Opaque<\"b2Joint\">): number;",
183
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_linear_offset\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_linear_offset(joint: Opaque<\"b2Joint\">): Vector3;",
184
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_local_anchor_a\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_local_anchor_a(joint: Opaque<\"b2Joint\">): Vector3;",
185
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_local_anchor_b\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_local_anchor_b(joint: Opaque<\"b2Joint\">): Vector3;",
186
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_local_axis_a\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_local_axis_a(joint: Opaque<\"b2Joint\">): Vector3;",
187
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_lower_limit\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_lower_limit(joint: Opaque<\"b2Joint\">): number;",
188
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_max_force\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_max_force(joint: Opaque<\"b2Joint\">): number;",
189
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_max_length\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_max_length(joint: Opaque<\"b2Joint\">): number;",
190
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_max_motor_force\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_max_motor_force(joint: Opaque<\"b2Joint\">): number;",
191
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_max_motor_torque\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_max_motor_torque(joint: Opaque<\"b2Joint\">): number;",
192
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_max_torque\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_max_torque(joint: Opaque<\"b2Joint\">): number;",
193
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_min_length\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_min_length(joint: Opaque<\"b2Joint\">): number;",
194
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_motor_force\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_motor_force(joint: Opaque<\"b2Joint\">, inv_dt: number): number;",
195
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_motor_force\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_motor_force(joint: Opaque<\"b2Joint\">): number;",
196
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_motor_speed\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_motor_speed(joint: Opaque<\"b2Joint\">): number;",
197
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_motor_torque\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_motor_torque(joint: Opaque<\"b2Joint\">, inv_dt: number): number;",
198
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_motor_torque\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_motor_torque(joint: Opaque<\"b2Joint\">): number;",
199
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_mouse_target\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_mouse_target(joint: Opaque<\"b2Joint\">): Vector3;",
200
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_ratio\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_ratio(joint: Opaque<\"b2Joint\">): number;",
201
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_reaction_force\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_reaction_force(joint: Opaque<\"b2Joint\">, inv_dt: number): Vector3;",
202
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_reaction_force\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_reaction_force(joint: Opaque<\"b2Joint\">): Vector3;",
203
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_reaction_torque\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_reaction_torque(joint: Opaque<\"b2Joint\">, inv_dt: number): number;",
204
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_reaction_torque\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_reaction_torque(joint: Opaque<\"b2Joint\">): number;",
205
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_reference_angle\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_reference_angle(joint: Opaque<\"b2Joint\">): number;",
206
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_spring_damping_ratio\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_spring_damping_ratio(joint: Opaque<\"b2Joint\">): number;",
207
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_spring_hertz\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_spring_hertz(joint: Opaque<\"b2Joint\">): number;",
208
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_type\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_type(joint: Opaque<\"b2Joint\">): number;",
209
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_upper_limit\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_upper_limit(joint: Opaque<\"b2Joint\">): number;",
210
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.get_world\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"b2World\"],\"isOptional\":false}]": "function get_world(joint: Opaque<\"b2Joint\">): Opaque<\"b2World\">;",
211
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.is_active\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_active(joint: Opaque<\"b2Joint\">): boolean;",
212
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.is_limit_enabled\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_limit_enabled(joint: Opaque<\"b2Joint\">): boolean;",
213
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.is_motor_enabled\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_motor_enabled(joint: Opaque<\"b2Joint\">): boolean;",
214
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.is_spring_enabled\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_spring_enabled(joint: Opaque<\"b2Joint\">): boolean;",
215
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.is_valid\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_valid(joint: Opaque<\"b2Joint\">): boolean;",
216
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_angular_damping_ratio\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_angular_damping_ratio(joint: Opaque<\"b2Joint\">, ratio: number): void;",
217
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_angular_hertz\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_angular_hertz(joint: Opaque<\"b2Joint\">, hertz: number): void;",
218
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_angular_offset\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_angular_offset(joint: Opaque<\"b2Joint\">, offset: number): void;",
219
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_collide_connected\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_collide_connected(joint: Opaque<\"b2Joint\">, collide: boolean): void;",
220
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_correction_factor\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_correction_factor(joint: Opaque<\"b2Joint\">, factor: number): void;",
221
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_damping_ratio\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_damping_ratio(joint: Opaque<\"b2Joint\">, ratio: number): void;",
222
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_frequency\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_frequency(joint: Opaque<\"b2Joint\">, frequency: number): void;",
223
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_hertz\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_hertz(joint: Opaque<\"b2Joint\">, hertz: number): void;",
224
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_length\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_length(joint: Opaque<\"b2Joint\">, length: number): void;",
225
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_length_range\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_length_range(joint: Opaque<\"b2Joint\">, min_length: number, max_length: number): void;",
226
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_limits\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_limits(joint: Opaque<\"b2Joint\">, lower: number, upper: number): void;",
227
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_linear_damping_ratio\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_linear_damping_ratio(joint: Opaque<\"b2Joint\">, ratio: number): void;",
228
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_linear_hertz\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_linear_hertz(joint: Opaque<\"b2Joint\">, hertz: number): void;",
229
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_linear_offset\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[]": "function set_linear_offset(joint: Opaque<\"b2Joint\">, offset: Vector3): void;",
230
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_max_force\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_max_force(joint: Opaque<\"b2Joint\">, force: number): void;",
231
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_max_length\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_max_length(joint: Opaque<\"b2Joint\">, length: number): void;",
232
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_max_motor_force\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_max_motor_force(joint: Opaque<\"b2Joint\">, force: number): void;",
233
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_max_motor_torque\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_max_motor_torque(joint: Opaque<\"b2Joint\">, torque: number): void;",
234
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_max_torque\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_max_torque(joint: Opaque<\"b2Joint\">, torque: number): void;",
235
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_min_length\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_min_length(joint: Opaque<\"b2Joint\">, length: number): void;",
236
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_motor_speed\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_motor_speed(joint: Opaque<\"b2Joint\">, speed: number): void;",
237
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_mouse_target\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[]": "function set_mouse_target(joint: Opaque<\"b2Joint\">, target: Vector3): void;",
238
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_ratio\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_ratio(joint: Opaque<\"b2Joint\">, ratio: number): void;",
239
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_reference_angle\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_reference_angle(joint: Opaque<\"b2Joint\">, angle: number): void;",
240
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_spring_damping_ratio\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_spring_damping_ratio(joint: Opaque<\"b2Joint\">, ratio: number): void;",
241
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.set_spring_hertz\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_spring_hertz(joint: Opaque<\"b2Joint\">, hertz: number): void;",
242
+ "b2d.joint\u0000FUNCTION\u0000b2d.joint.wake_bodies\u0000[{\"types\":[\"b2Joint\"],\"isOptional\":false}]->[]": "function wake_bodies(joint: Opaque<\"b2Joint\">): void;",
243
+ "b2d.joint\u0000TYPEDEF\u0000b2Joint\u0000": "type b2Joint = Opaque<\"b2Joint\">;",
244
+ "b2d.shape\u0000CONSTANT\u0000b2d.shape.SHAPE_TYPE_BOX\u0000": "const SHAPE_TYPE_BOX: number & { readonly __brand: \"b2d.shape.SHAPE_TYPE_BOX\" };",
245
+ "b2d.shape\u0000CONSTANT\u0000b2d.shape.SHAPE_TYPE_CAPSULE\u0000": "const SHAPE_TYPE_CAPSULE: number & { readonly __brand: \"b2d.shape.SHAPE_TYPE_CAPSULE\" };",
246
+ "b2d.shape\u0000CONSTANT\u0000b2d.shape.SHAPE_TYPE_CHAIN\u0000": "const SHAPE_TYPE_CHAIN: number & { readonly __brand: \"b2d.shape.SHAPE_TYPE_CHAIN\" };",
247
+ "b2d.shape\u0000CONSTANT\u0000b2d.shape.SHAPE_TYPE_CIRCLE\u0000": "const SHAPE_TYPE_CIRCLE: number & { readonly __brand: \"b2d.shape.SHAPE_TYPE_CIRCLE\" };",
248
+ "b2d.shape\u0000CONSTANT\u0000b2d.shape.SHAPE_TYPE_EDGE\u0000": "const SHAPE_TYPE_EDGE: number & { readonly __brand: \"b2d.shape.SHAPE_TYPE_EDGE\" };",
249
+ "b2d.shape\u0000CONSTANT\u0000b2d.shape.SHAPE_TYPE_GRID\u0000": "const SHAPE_TYPE_GRID: number & { readonly __brand: \"b2d.shape.SHAPE_TYPE_GRID\" };",
250
+ "b2d.shape\u0000CONSTANT\u0000b2d.shape.SHAPE_TYPE_POLYGON\u0000": "const SHAPE_TYPE_POLYGON: number & { readonly __brand: \"b2d.shape.SHAPE_TYPE_POLYGON\" };",
251
+ "b2d.shape\u0000CONSTANT\u0000b2d.shape.SHAPE_TYPE_SEGMENT\u0000": "const SHAPE_TYPE_SEGMENT: number & { readonly __brand: \"b2d.shape.SHAPE_TYPE_SEGMENT\" };",
252
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.are_contact_events_enabled\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function are_contact_events_enabled(shape_id: Opaque<\"b2Shape\">): boolean;",
253
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.are_hit_events_enabled\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function are_hit_events_enabled(shape_id: Opaque<\"b2Shape\">): boolean;",
254
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.are_pre_solve_events_enabled\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function are_pre_solve_events_enabled(shape_id: Opaque<\"b2Shape\">): boolean;",
255
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.are_sensor_events_enabled\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function are_sensor_events_enabled(shape_id: Opaque<\"b2Shape\">): boolean;",
256
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.enable_contact_events\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable_contact_events(shape_id: Opaque<\"b2Shape\">, enable: boolean): void;",
257
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.enable_hit_events\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable_hit_events(shape_id: Opaque<\"b2Shape\">, enable: boolean): void;",
258
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.enable_pre_solve_events\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable_pre_solve_events(shape_id: Opaque<\"b2Shape\">, enable: boolean): void;",
259
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.enable_sensor_events\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable_sensor_events(shape_id: Opaque<\"b2Shape\">, enable: boolean): void;",
260
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.get_body\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false}]->[{\"types\":[\"b2Body\"],\"isOptional\":false}]": "function get_body(shape_id: Opaque<\"b2Shape\">): Opaque<\"b2Body\">;",
261
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.get_closest_point\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_closest_point(shape_id: Opaque<\"b2Shape\">, target: Vector3): Vector3;",
262
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.get_contact_capacity\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_contact_capacity(shape_id: Opaque<\"b2Shape\">): number;",
263
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.get_contact_data\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_contact_data(shape_id: Opaque<\"b2Shape\">): Record<string | number, unknown>;",
264
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.get_mass_data\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_mass_data(shape_id: Opaque<\"b2Shape\">): { mass: number; center: Vector3; inertia: number };",
265
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.get_material\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_material(shape_id: Opaque<\"b2Shape\">): number;",
266
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.get_sensor_capacity\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_sensor_capacity(shape_id: Opaque<\"b2Shape\">): number;",
267
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.get_sensor_overlaps\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_sensor_overlaps(shape_id: Opaque<\"b2Shape\">): { shape_id: number }[];",
268
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.get_shape\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_shape(shape_id: Opaque<\"b2Shape\">): { type: number; radius?: number; center?: Vector3; v0?: Vector3; v1?: Vector3; v2?: Vector3; v3?: Vector3; vertices?: Vector3[]; hx?: number; hy?: number; angle?: number; loop?: boolean; prev_vertex?: Vector3; next_vertex?: Vector3 };",
269
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.get_world\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false}]->[{\"types\":[\"b2World\"],\"isOptional\":false}]": "function get_world(shape_id: Opaque<\"b2Shape\">): Opaque<\"b2World\">;",
270
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.is_valid\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_valid(shape_id: Opaque<\"b2Shape\">): boolean;",
271
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.ray_cast\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function ray_cast(shape_id: Opaque<\"b2Shape\">, origin: Vector3, translation: Vector3, max_fraction: number): { point: Vector3; normal: Vector3; fraction: number; iterations: number };",
272
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.set_material\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_material(shape_id: Opaque<\"b2Shape\">, material: number): void;",
273
+ "b2d.shape\u0000FUNCTION\u0000b2d.shape.set_shape\u0000[{\"types\":[\"b2Shape\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_shape(shape_id: Opaque<\"b2Shape\">, definition: { type?: number; radius?: number; center?: Vector3; v0?: Vector3; v1?: Vector3; v2?: Vector3; v3?: Vector3; vertices?: Vector3[]; hx?: number; hy?: number; angle?: number; loop?: boolean; prev_vertex?: Vector3; next_vertex?: Vector3 }, update_mass: boolean): void;",
274
+ "b2d.shape\u0000TYPEDEF\u0000b2Shape\u0000": "type b2Shape = Opaque<\"b2Shape\">;",
275
+ "b2d.world\u0000FUNCTION\u0000b2d.world.cast_mover\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function cast_mover(world: Opaque<\"b2World\">, capsule: { center1?: Vector3; center2?: Vector3; radius?: number }, translation: Vector3, filter?: { category_bits?: number; mask_bits?: number }): number;",
276
+ "b2d.world\u0000FUNCTION\u0000b2d.world.cast_ray\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]": "function cast_ray(world: Opaque<\"b2World\">, origin: Vector3, translation: Vector3, filter: { category_bits?: number; mask_bits?: number; group_index?: number }, max_results: number): LuaMultiReturn<[{ fixture: number; shape: number; point: Vector3; normal: Vector3; fraction: number }[], { node_visits: number; leaf_visits: number }]>;",
277
+ "b2d.world\u0000FUNCTION\u0000b2d.world.cast_ray\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true},{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]": "function cast_ray(world: Opaque<\"b2World\">, origin: Vector3, translation: Vector3, filter?: { category_bits?: number; mask_bits?: number; group_index?: number }, max_results?: number): LuaMultiReturn<[{ fixture: number; shape: number; point: Vector3; normal: Vector3; fraction: number }[], { node_visits: number; leaf_visits: number }]>;",
278
+ "b2d.world\u0000FUNCTION\u0000b2d.world.cast_ray_closest\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function cast_ray_closest(world: Opaque<\"b2World\">, origin: Vector3, translation: Vector3, filter: { category_bits?: number; mask_bits?: number; group_index?: number }): { fixture: number; shape: number; point: Vector3; normal: Vector3; fraction: number; node_visits: number; leaf_visits: number };",
279
+ "b2d.world\u0000FUNCTION\u0000b2d.world.cast_ray_closest\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"table\"],\"isOptional\":false}]": "function cast_ray_closest(world: Opaque<\"b2World\">, origin: Vector3, translation: Vector3, filter?: { category_bits?: number; mask_bits?: number; group_index?: number }): { fixture: number; shape: number; point: Vector3; normal: Vector3; fraction: number; node_visits: number; leaf_visits: number } | unknown;",
280
+ "b2d.world\u0000FUNCTION\u0000b2d.world.cast_shape\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]": "function cast_shape(world: Opaque<\"b2World\">, shape: { type?: number; radius?: number; center?: Vector3; v0?: Vector3; v1?: Vector3; v2?: Vector3; v3?: Vector3; vertices?: Vector3[]; hx?: number; hy?: number; angle?: number; loop?: boolean; prev_vertex?: Vector3; next_vertex?: Vector3 }, translation: Vector3, filter: { category_bits?: number; mask_bits?: number; group_index?: number }, max_results: number): LuaMultiReturn<[{ fixture: number; shape: number; point: Vector3; normal: Vector3; fraction: number }[], { node_visits: number; leaf_visits: number }]>;",
281
+ "b2d.world\u0000FUNCTION\u0000b2d.world.cast_shape\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true},{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]": "function cast_shape(world: Opaque<\"b2World\">, shape: { type?: number; radius?: number; center?: Vector3; v0?: Vector3; v1?: Vector3; v2?: Vector3; v3?: Vector3; vertices?: Vector3[]; hx?: number; hy?: number; angle?: number; loop?: boolean; prev_vertex?: Vector3; next_vertex?: Vector3 }, translation: Vector3, filter?: { category_bits?: number; mask_bits?: number; group_index?: number }, max_results?: number): LuaMultiReturn<[{ fixture: number; shape: number; point: Vector3; normal: Vector3; fraction: number }[], { node_visits: number; leaf_visits: number }]>;",
282
+ "b2d.world\u0000FUNCTION\u0000b2d.world.collide_mover\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true},{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function collide_mover(world: Opaque<\"b2World\">, capsule: { center1?: Vector3; center2?: Vector3; radius?: number }, filter?: { category_bits?: number; mask_bits?: number }, max_results?: number): Record<string | number, unknown>;",
283
+ "b2d.world\u0000FUNCTION\u0000b2d.world.enable_continuous\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable_continuous(world: Opaque<\"b2World\">, enable: boolean): void;",
284
+ "b2d.world\u0000FUNCTION\u0000b2d.world.enable_sleeping\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable_sleeping(world: Opaque<\"b2World\">, enable: boolean): void;",
285
+ "b2d.world\u0000FUNCTION\u0000b2d.world.enable_speculative\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable_speculative(world: Opaque<\"b2World\">, enable: boolean): void;",
286
+ "b2d.world\u0000FUNCTION\u0000b2d.world.enable_warm_starting\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable_warm_starting(world: Opaque<\"b2World\">, enable: boolean): void;",
287
+ "b2d.world\u0000FUNCTION\u0000b2d.world.explode\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function explode(world: Opaque<\"b2World\">, definition: Record<string | number, unknown>): void;",
288
+ "b2d.world\u0000FUNCTION\u0000b2d.world.get_awake_body_count\u0000[{\"types\":[\"b2World\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_awake_body_count(world: Opaque<\"b2World\">): number;",
289
+ "b2d.world\u0000FUNCTION\u0000b2d.world.get_counters\u0000[{\"types\":[\"b2World\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_counters(world: Opaque<\"b2World\">): Record<string | number, unknown>;",
290
+ "b2d.world\u0000FUNCTION\u0000b2d.world.get_gravity\u0000[{\"types\":[\"b2World\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_gravity(world: Opaque<\"b2World\">): Vector3;",
291
+ "b2d.world\u0000FUNCTION\u0000b2d.world.get_hit_event_threshold\u0000[{\"types\":[\"b2World\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_hit_event_threshold(world: Opaque<\"b2World\">): number;",
292
+ "b2d.world\u0000FUNCTION\u0000b2d.world.get_maximum_linear_speed\u0000[{\"types\":[\"b2World\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_maximum_linear_speed(world: Opaque<\"b2World\">): number;",
293
+ "b2d.world\u0000FUNCTION\u0000b2d.world.get_profile\u0000[{\"types\":[\"b2World\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_profile(world: Opaque<\"b2World\">): Record<string | number, unknown>;",
294
+ "b2d.world\u0000FUNCTION\u0000b2d.world.get_restitution_threshold\u0000[{\"types\":[\"b2World\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_restitution_threshold(world: Opaque<\"b2World\">): number;",
295
+ "b2d.world\u0000FUNCTION\u0000b2d.world.is_continuous_enabled\u0000[{\"types\":[\"b2World\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_continuous_enabled(world: Opaque<\"b2World\">): boolean;",
296
+ "b2d.world\u0000FUNCTION\u0000b2d.world.is_locked\u0000[{\"types\":[\"b2World\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_locked(world: Opaque<\"b2World\">): boolean;",
297
+ "b2d.world\u0000FUNCTION\u0000b2d.world.is_sleeping_enabled\u0000[{\"types\":[\"b2World\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_sleeping_enabled(world: Opaque<\"b2World\">): boolean;",
298
+ "b2d.world\u0000FUNCTION\u0000b2d.world.is_valid\u0000[{\"types\":[\"b2World\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_valid(world: Opaque<\"b2World\">): boolean;",
299
+ "b2d.world\u0000FUNCTION\u0000b2d.world.is_warm_starting_enabled\u0000[{\"types\":[\"b2World\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_warm_starting_enabled(world: Opaque<\"b2World\">): boolean;",
300
+ "b2d.world\u0000FUNCTION\u0000b2d.world.overlap_aabb\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]": "function overlap_aabb(world: Opaque<\"b2World\">, aabb: { lower?: Vector3; upper?: Vector3 }, filter: { category_bits?: number; mask_bits?: number; group_index?: number }, max_results: number): LuaMultiReturn<[{ index: number; type: number; sensor: boolean; density: number; friction: number; restitution: number; child_count: number }[], { node_visits: number; leaf_visits: number }]>;",
301
+ "b2d.world\u0000FUNCTION\u0000b2d.world.overlap_aabb\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true},{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]": "function overlap_aabb(world: Opaque<\"b2World\">, aabb: { lower?: Vector3; upper?: Vector3 }, filter?: { category_bits?: number; mask_bits?: number; group_index?: number }, max_results?: number): LuaMultiReturn<[{ shape_id: number }[], { node_visits: number; leaf_visits: number }]>;",
302
+ "b2d.world\u0000FUNCTION\u0000b2d.world.overlap_shape\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]": "function overlap_shape(world: Opaque<\"b2World\">, shape: { type?: number; radius?: number; center?: Vector3; v0?: Vector3; v1?: Vector3; v2?: Vector3; v3?: Vector3; vertices?: Vector3[]; hx?: number; hy?: number; angle?: number; loop?: boolean; prev_vertex?: Vector3; next_vertex?: Vector3 }, filter: { category_bits?: number; mask_bits?: number; group_index?: number }, max_results: number): LuaMultiReturn<[{ index: number; type: number; sensor: boolean; density: number; friction: number; restitution: number; child_count: number }[], { node_visits: number; leaf_visits: number }]>;",
303
+ "b2d.world\u0000FUNCTION\u0000b2d.world.overlap_shape\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true},{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]": "function overlap_shape(world: Opaque<\"b2World\">, shape: { type?: number; radius?: number; center?: Vector3; v0?: Vector3; v1?: Vector3; v2?: Vector3; v3?: Vector3; vertices?: Vector3[]; hx?: number; hy?: number; angle?: number; loop?: boolean; prev_vertex?: Vector3; next_vertex?: Vector3 }, filter?: { category_bits?: number; mask_bits?: number; group_index?: number }, max_results?: number): LuaMultiReturn<[{ shape_id: number }[], { node_visits: number; leaf_visits: number }]>;",
304
+ "b2d.world\u0000FUNCTION\u0000b2d.world.rebuild_static_tree\u0000[{\"types\":[\"b2World\"],\"isOptional\":false}]->[]": "function rebuild_static_tree(world: Opaque<\"b2World\">): void;",
305
+ "b2d.world\u0000FUNCTION\u0000b2d.world.set_contact_tuning\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_contact_tuning(world: Opaque<\"b2World\">, hertz: number, damping_ratio: number, pushout: number): void;",
306
+ "b2d.world\u0000FUNCTION\u0000b2d.world.set_gravity\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[]": "function set_gravity(world: Opaque<\"b2World\">, gravity: Vector3): void;",
307
+ "b2d.world\u0000FUNCTION\u0000b2d.world.set_hit_event_threshold\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_hit_event_threshold(world: Opaque<\"b2World\">, threshold: number): void;",
308
+ "b2d.world\u0000FUNCTION\u0000b2d.world.set_joint_tuning\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_joint_tuning(world: Opaque<\"b2World\">, hertz: number, damping_ratio: number): void;",
309
+ "b2d.world\u0000FUNCTION\u0000b2d.world.set_maximum_linear_speed\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_maximum_linear_speed(world: Opaque<\"b2World\">, speed: number): void;",
310
+ "b2d.world\u0000FUNCTION\u0000b2d.world.set_restitution_threshold\u0000[{\"types\":[\"b2World\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_restitution_threshold(world: Opaque<\"b2World\">, threshold: number): void;",
311
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_FLOAT32\u0000": "const VALUE_TYPE_FLOAT32: number & { readonly __brand: \"buffer.VALUE_TYPE_FLOAT32\" };",
312
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_INT16\u0000": "const VALUE_TYPE_INT16: number & { readonly __brand: \"buffer.VALUE_TYPE_INT16\" };",
313
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_INT32\u0000": "const VALUE_TYPE_INT32: number & { readonly __brand: \"buffer.VALUE_TYPE_INT32\" };",
314
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_INT64\u0000": "const VALUE_TYPE_INT64: number & { readonly __brand: \"buffer.VALUE_TYPE_INT64\" };",
315
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_INT8\u0000": "const VALUE_TYPE_INT8: number & { readonly __brand: \"buffer.VALUE_TYPE_INT8\" };",
316
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_UINT16\u0000": "const VALUE_TYPE_UINT16: number & { readonly __brand: \"buffer.VALUE_TYPE_UINT16\" };",
317
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_UINT32\u0000": "const VALUE_TYPE_UINT32: number & { readonly __brand: \"buffer.VALUE_TYPE_UINT32\" };",
318
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_UINT64\u0000": "const VALUE_TYPE_UINT64: number & { readonly __brand: \"buffer.VALUE_TYPE_UINT64\" };",
319
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_UINT8\u0000": "const VALUE_TYPE_UINT8: number & { readonly __brand: \"buffer.VALUE_TYPE_UINT8\" };",
320
+ "buffer\u0000FUNCTION\u0000buffer.copy_buffer\u0000[{\"types\":[\"buffer\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"buffer\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function copy_buffer(dst: Opaque<\"buffer\">, dstoffset: number, src: Opaque<\"buffer\">, srcoffset: number, count: number): void;",
321
+ "buffer\u0000FUNCTION\u0000buffer.copy_stream\u0000[{\"types\":[\"bufferstream\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"bufferstream\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function copy_stream(dst: Opaque<\"bufferstream\"> & { [index: number]: number }, dstoffset: number, src: Opaque<\"bufferstream\"> & { [index: number]: number }, srcoffset: number, count: number): void;",
322
+ "buffer\u0000FUNCTION\u0000buffer.create\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"buffer\"],\"isOptional\":false}]": "function create(element_count: number, declaration: { name?: Hash | string; type?: Opaque<\"constant\">; count?: number }): Opaque<\"buffer\">;",
323
+ "buffer\u0000FUNCTION\u0000buffer.get_bytes\u0000[{\"types\":[\"buffer\"],\"isOptional\":false},{\"types\":[\"hash\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_bytes(buffer: Opaque<\"buffer\">, stream_name: Hash): string;",
324
+ "buffer\u0000FUNCTION\u0000buffer.get_metadata\u0000[{\"types\":[\"buffer\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"table\"],\"isOptional\":false},{\"types\":[\"constant\",\"nil\"],\"isOptional\":false}]": "function get_metadata(buf: Opaque<\"buffer\">, metadata_name: Hash | string): LuaMultiReturn<[number[] | unknown, Opaque<\"constant\"> | unknown]>;",
325
+ "buffer\u0000FUNCTION\u0000buffer.get_stream\u0000[{\"types\":[\"buffer\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"bufferstream\"],\"isOptional\":false}]": "function get_stream(buffer: Opaque<\"buffer\">, stream_name: Hash | string): Opaque<\"bufferstream\"> & { [index: number]: number };",
326
+ "buffer\u0000FUNCTION\u0000buffer.set_metadata\u0000[{\"types\":[\"buffer\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_metadata(buf: Opaque<\"buffer\">, metadata_name: Hash | string, values: number[], value_type: Opaque<\"constant\">): void;",
327
+ "camera\u0000CONSTANT\u0000camera.ORTHO_MODE_AUTO_COVER\u0000": "const ORTHO_MODE_AUTO_COVER: number & { readonly __brand: \"camera.ORTHO_MODE_AUTO_COVER\" };",
328
+ "camera\u0000CONSTANT\u0000camera.ORTHO_MODE_AUTO_FIT\u0000": "const ORTHO_MODE_AUTO_FIT: number & { readonly __brand: \"camera.ORTHO_MODE_AUTO_FIT\" };",
329
+ "camera\u0000CONSTANT\u0000camera.ORTHO_MODE_FIXED\u0000": "const ORTHO_MODE_FIXED: number & { readonly __brand: \"camera.ORTHO_MODE_FIXED\" };",
330
+ "camera\u0000FUNCTION\u0000camera.get_aspect_ratio\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_aspect_ratio(camera?: Url | number): number;",
331
+ "camera\u0000FUNCTION\u0000camera.get_auto_aspect_ratio\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_auto_aspect_ratio(camera?: Url | number): boolean;",
332
+ "camera\u0000FUNCTION\u0000camera.get_cameras\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_cameras(): Url[];",
333
+ "camera\u0000FUNCTION\u0000camera.get_enabled\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_enabled(camera?: Url | number): boolean;",
334
+ "camera\u0000FUNCTION\u0000camera.get_far_z\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_far_z(camera?: Url | number): number;",
335
+ "camera\u0000FUNCTION\u0000camera.get_fov\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_fov(camera?: Url | number): number;",
336
+ "camera\u0000FUNCTION\u0000camera.get_near_z\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_near_z(camera?: Url | number): number;",
337
+ "camera\u0000FUNCTION\u0000camera.get_orthographic_auto_zoom\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_orthographic_auto_zoom(camera?: Url | number): number;",
338
+ "camera\u0000FUNCTION\u0000camera.get_orthographic_mode\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_orthographic_mode(camera?: Url | number): number;",
339
+ "camera\u0000FUNCTION\u0000camera.get_orthographic_zoom\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_orthographic_zoom(camera?: Url | number): number;",
340
+ "camera\u0000FUNCTION\u0000camera.get_projection\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function get_projection(camera?: Url | number): Matrix4;",
341
+ "camera\u0000FUNCTION\u0000camera.get_view\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function get_view(camera?: Url | number): Matrix4;",
342
+ "camera\u0000FUNCTION\u0000camera.screen_to_world\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function screen_to_world(pos: Vector3, camera?: Url | number): Vector3;",
343
+ "camera\u0000FUNCTION\u0000camera.screen_xy_to_world\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function screen_xy_to_world(x: number, y: number, camera?: Url | number): Vector3;",
344
+ "camera\u0000FUNCTION\u0000camera.set_aspect_ratio\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_aspect_ratio(camera: Url | number | undefined, aspect_ratio: number): void;",
345
+ "camera\u0000FUNCTION\u0000camera.set_auto_aspect_ratio\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_auto_aspect_ratio(camera: Url | number | undefined, auto_aspect_ratio: boolean): void;",
346
+ "camera\u0000FUNCTION\u0000camera.set_far_z\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_far_z(camera: Url | number | undefined, far_z: number): void;",
347
+ "camera\u0000FUNCTION\u0000camera.set_fov\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_fov(camera: Url | number | undefined, fov: number): void;",
348
+ "camera\u0000FUNCTION\u0000camera.set_near_z\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_near_z(camera: Url | number | undefined, near_z: number): void;",
349
+ "camera\u0000FUNCTION\u0000camera.set_orthographic_mode\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_orthographic_mode(camera: Url | number | undefined, mode: number): void;",
350
+ "camera\u0000FUNCTION\u0000camera.set_orthographic_zoom\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_orthographic_zoom(camera: Url | number | undefined, orthographic_zoom: number): void;",
351
+ "camera\u0000FUNCTION\u0000camera.world_to_screen\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function world_to_screen(world_pos: Vector3, camera?: Url | number): Vector3;",
352
+ "camera\u0000PROPERTY\u0000aspect_ratio\u0000": "aspect_ratio: unknown;",
353
+ "camera\u0000PROPERTY\u0000far_z\u0000": "far_z: unknown;",
354
+ "camera\u0000PROPERTY\u0000fov\u0000": "fov: unknown;",
355
+ "camera\u0000PROPERTY\u0000near_z\u0000": "near_z: unknown;",
356
+ "camera\u0000PROPERTY\u0000orthographic_auto_zoom\u0000": "orthographic_auto_zoom: unknown;",
357
+ "camera\u0000PROPERTY\u0000orthographic_zoom\u0000": "orthographic_zoom: unknown;",
358
+ "camera\u0000PROPERTY\u0000projection\u0000": "projection: unknown;",
359
+ "camera\u0000PROPERTY\u0000view\u0000": "view: unknown;",
360
+ "collectionfactory\u0000CONSTANT\u0000collectionfactory.STATUS_LOADED\u0000": "const STATUS_LOADED: number & { readonly __brand: \"collectionfactory.STATUS_LOADED\" };",
361
+ "collectionfactory\u0000CONSTANT\u0000collectionfactory.STATUS_LOADING\u0000": "const STATUS_LOADING: number & { readonly __brand: \"collectionfactory.STATUS_LOADING\" };",
362
+ "collectionfactory\u0000CONSTANT\u0000collectionfactory.STATUS_UNLOADED\u0000": "const STATUS_UNLOADED: number & { readonly __brand: \"collectionfactory.STATUS_UNLOADED\" };",
363
+ "collectionfactory\u0000FUNCTION\u0000collectionfactory.create\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":true},{\"types\":[\"quaternion\"],\"isOptional\":true},{\"types\":[\"table\"],\"isOptional\":true},{\"types\":[\"number\",\"vector3\"],\"isOptional\":true}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function create(url: string | Hash | Url, position?: Vector3, rotation?: Quaternion, properties?: Record<string | number, unknown>, scale?: number | Vector3): LuaMap<Hash, Hash>;",
364
+ "collectionfactory\u0000FUNCTION\u0000collectionfactory.get_status\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_status(url?: string | Hash | Url): Opaque<\"constant\">;",
365
+ "collectionfactory\u0000FUNCTION\u0000collectionfactory.load\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true},{\"types\":[\"function(self, url, result)\"],\"isOptional\":true}]->[]": "function load(url?: string | Hash | Url, complete_function?: (self: unknown, url: unknown, result: unknown) => void): void;",
366
+ "collectionfactory\u0000FUNCTION\u0000collectionfactory.set_prototype\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true},{\"types\":[\"nil\",\"string\"],\"isOptional\":true}]->[]": "function set_prototype(url?: string | Hash | Url, prototype?: string): void;",
367
+ "collectionfactory\u0000FUNCTION\u0000collectionfactory.unload\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[]": "function unload(url?: string | Hash | Url): void;",
368
+ "collectionproxy\u0000CONSTANT\u0000collectionproxy.RESULT_ALREADY_LOADED\u0000": "const RESULT_ALREADY_LOADED: number & { readonly __brand: \"collectionproxy.RESULT_ALREADY_LOADED\" };",
369
+ "collectionproxy\u0000CONSTANT\u0000collectionproxy.RESULT_LOADING\u0000": "const RESULT_LOADING: number & { readonly __brand: \"collectionproxy.RESULT_LOADING\" };",
370
+ "collectionproxy\u0000CONSTANT\u0000collectionproxy.RESULT_NOT_EXCLUDED\u0000": "const RESULT_NOT_EXCLUDED: number & { readonly __brand: \"collectionproxy.RESULT_NOT_EXCLUDED\" };",
371
+ "collectionproxy\u0000FUNCTION\u0000collectionproxy.get_resources\u0000[{\"types\":[\"url\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_resources(collectionproxy: Url): Hash[];",
372
+ "collectionproxy\u0000FUNCTION\u0000collectionproxy.set_collection\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true},{\"types\":[\"nil\",\"string\"],\"isOptional\":true}]->[{\"types\":[\"boolean\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]": "function set_collection(url?: string | Hash | Url, prototype?: string): LuaMultiReturn<[boolean, number]>;",
373
+ "compute\u0000FUNCTION\u0000compute.get_constants\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_constants(path: Hash | string): { name: Hash; type: number; value: Vector4 | Matrix4 }[];",
374
+ "compute\u0000FUNCTION\u0000compute.get_samplers\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_samplers(path: Hash | string): { name: Hash; u_wrap: number; v_wrap: number; min_filter: number; mag_filter: number; max_anisotropy: number }[];",
375
+ "compute\u0000FUNCTION\u0000compute.get_textures\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_textures(path: Hash | string): { path: Hash; handle: Hash; width: number; height: number; depth: number; mipmaps: number; type: number; flags: number }[];",
376
+ "compute\u0000FUNCTION\u0000compute.set_constants\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function set_constants(path: Hash | string, constants: Record<string, { type?: number; value?: Vector4 | Vector3 | Matrix4 | number | (Vector4 | Matrix4)[] }>): void;",
377
+ "compute\u0000FUNCTION\u0000compute.set_samplers\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function set_samplers(path: Hash | string, samplers: Record<string, { u_wrap?: number; v_wrap?: number; min_filter?: number; mag_filter?: number; max_anisotropy?: number }>): void;",
378
+ "compute\u0000FUNCTION\u0000compute.set_textures\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function set_textures(path: Hash | string, textures: LuaMap<string, Hash>): void;",
379
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_ANDROID_BUILD_FINGERPRINT\u0000": "const SYSFIELD_ANDROID_BUILD_FINGERPRINT: number & { readonly __brand: \"crash.SYSFIELD_ANDROID_BUILD_FINGERPRINT\" };",
380
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_DEVICE_LANGUAGE\u0000": "const SYSFIELD_DEVICE_LANGUAGE: number & { readonly __brand: \"crash.SYSFIELD_DEVICE_LANGUAGE\" };",
381
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_DEVICE_MODEL\u0000": "const SYSFIELD_DEVICE_MODEL: number & { readonly __brand: \"crash.SYSFIELD_DEVICE_MODEL\" };",
382
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_ENGINE_HASH\u0000": "const SYSFIELD_ENGINE_HASH: number & { readonly __brand: \"crash.SYSFIELD_ENGINE_HASH\" };",
383
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_ENGINE_VERSION\u0000": "const SYSFIELD_ENGINE_VERSION: number & { readonly __brand: \"crash.SYSFIELD_ENGINE_VERSION\" };",
384
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_LANGUAGE\u0000": "const SYSFIELD_LANGUAGE: number & { readonly __brand: \"crash.SYSFIELD_LANGUAGE\" };",
385
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_MANUFACTURER\u0000": "const SYSFIELD_MANUFACTURER: number & { readonly __brand: \"crash.SYSFIELD_MANUFACTURER\" };",
386
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_MAX\u0000": "const SYSFIELD_MAX: number & { readonly __brand: \"crash.SYSFIELD_MAX\" };",
387
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_SYSTEM_NAME\u0000": "const SYSFIELD_SYSTEM_NAME: number & { readonly __brand: \"crash.SYSFIELD_SYSTEM_NAME\" };",
388
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_SYSTEM_VERSION\u0000": "const SYSFIELD_SYSTEM_VERSION: number & { readonly __brand: \"crash.SYSFIELD_SYSTEM_VERSION\" };",
389
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_TERRITORY\u0000": "const SYSFIELD_TERRITORY: number & { readonly __brand: \"crash.SYSFIELD_TERRITORY\" };",
390
+ "crash\u0000CONSTANT\u0000crash.USERFIELD_MAX\u0000": "const USERFIELD_MAX: number & { readonly __brand: \"crash.USERFIELD_MAX\" };",
391
+ "crash\u0000CONSTANT\u0000crash.USERFIELD_SIZE\u0000": "const USERFIELD_SIZE: number & { readonly __brand: \"crash.USERFIELD_SIZE\" };",
392
+ "crash\u0000FUNCTION\u0000crash.get_backtrace\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_backtrace(handle: number): Record<string | number, unknown>;",
393
+ "crash\u0000FUNCTION\u0000crash.get_extra_data\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_extra_data(handle: number): string;",
394
+ "crash\u0000FUNCTION\u0000crash.get_modules\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_modules(handle: number): Record<string | number, unknown>;",
395
+ "crash\u0000FUNCTION\u0000crash.get_signum\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_signum(handle: number): number;",
396
+ "crash\u0000FUNCTION\u0000crash.get_sys_field\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function get_sys_field(handle: number, index: number): string | unknown;",
397
+ "crash\u0000FUNCTION\u0000crash.get_user_field\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_user_field(handle: number, index: number): string;",
398
+ "crash\u0000FUNCTION\u0000crash.load_previous\u0000[]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false}]": "function load_previous(): number | unknown;",
399
+ "crash\u0000FUNCTION\u0000crash.release\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function release(handle: number): void;",
400
+ "crash\u0000FUNCTION\u0000crash.set_file_path\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function set_file_path(path: string): void;",
401
+ "crash\u0000FUNCTION\u0000crash.set_user_field\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function set_user_field(index: number, value: string): void;",
402
+ "crash\u0000FUNCTION\u0000crash.write_dump\u0000[]->[]": "function write_dump(): void;",
403
+ "factory\u0000CONSTANT\u0000factory.STATUS_LOADED\u0000": "const STATUS_LOADED: number & { readonly __brand: \"factory.STATUS_LOADED\" };",
404
+ "factory\u0000CONSTANT\u0000factory.STATUS_LOADING\u0000": "const STATUS_LOADING: number & { readonly __brand: \"factory.STATUS_LOADING\" };",
405
+ "factory\u0000CONSTANT\u0000factory.STATUS_UNLOADED\u0000": "const STATUS_UNLOADED: number & { readonly __brand: \"factory.STATUS_UNLOADED\" };",
406
+ "factory\u0000FUNCTION\u0000factory.create\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":true},{\"types\":[\"quaternion\"],\"isOptional\":true},{\"types\":[\"table\"],\"isOptional\":true},{\"types\":[\"number\",\"vector3\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function create(url: string | Hash | Url, position?: Vector3, rotation?: Quaternion, properties?: Record<string | number, unknown>, scale?: number | Vector3): Hash;",
407
+ "factory\u0000FUNCTION\u0000factory.get_status\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_status(url?: string | Hash | Url): Opaque<\"constant\">;",
408
+ "factory\u0000FUNCTION\u0000factory.load\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true},{\"types\":[\"function(self, url, result)\"],\"isOptional\":true}]->[]": "function load(url?: string | Hash | Url, complete_function?: (self: unknown, url: unknown, result: unknown) => void): void;",
409
+ "factory\u0000FUNCTION\u0000factory.set_prototype\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true},{\"types\":[\"nil\",\"string\"],\"isOptional\":true}]->[]": "function set_prototype(url?: string | Hash | Url, prototype?: string): void;",
410
+ "factory\u0000FUNCTION\u0000factory.unload\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[]": "function unload(url?: string | Hash | Url): void;",
411
+ "font\u0000FUNCTION\u0000font.add_font\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function add_font(fontc: string | Hash, ttf: string | Hash): void;",
412
+ "font\u0000FUNCTION\u0000font.get_info\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_info(fontc: string | Hash): { path: Hash; fonts: { path: string; path_hash: Hash }[] };",
413
+ "font\u0000FUNCTION\u0000font.prewarm_text\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"function(self, request_id, result, errstring)\"],\"isOptional\":true}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function prewarm_text(fontc: string | Hash, text: string, callback?: (self: unknown, request_id: unknown, result: unknown, errstring: unknown) => void): number;",
414
+ "font\u0000FUNCTION\u0000font.remove_font\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function remove_font(fontc: string | Hash, ttf: string | Hash): void;",
415
+ "go\u0000CONSTANT\u0000go.EASING_INBACK\u0000": "const EASING_INBACK: number & { readonly __brand: \"go.EASING_INBACK\" };",
416
+ "go\u0000CONSTANT\u0000go.EASING_INBOUNCE\u0000": "const EASING_INBOUNCE: number & { readonly __brand: \"go.EASING_INBOUNCE\" };",
417
+ "go\u0000CONSTANT\u0000go.EASING_INCIRC\u0000": "const EASING_INCIRC: number & { readonly __brand: \"go.EASING_INCIRC\" };",
418
+ "go\u0000CONSTANT\u0000go.EASING_INCUBIC\u0000": "const EASING_INCUBIC: number & { readonly __brand: \"go.EASING_INCUBIC\" };",
419
+ "go\u0000CONSTANT\u0000go.EASING_INELASTIC\u0000": "const EASING_INELASTIC: number & { readonly __brand: \"go.EASING_INELASTIC\" };",
420
+ "go\u0000CONSTANT\u0000go.EASING_INEXPO\u0000": "const EASING_INEXPO: number & { readonly __brand: \"go.EASING_INEXPO\" };",
421
+ "go\u0000CONSTANT\u0000go.EASING_INOUTBACK\u0000": "const EASING_INOUTBACK: number & { readonly __brand: \"go.EASING_INOUTBACK\" };",
422
+ "go\u0000CONSTANT\u0000go.EASING_INOUTBOUNCE\u0000": "const EASING_INOUTBOUNCE: number & { readonly __brand: \"go.EASING_INOUTBOUNCE\" };",
423
+ "go\u0000CONSTANT\u0000go.EASING_INOUTCIRC\u0000": "const EASING_INOUTCIRC: number & { readonly __brand: \"go.EASING_INOUTCIRC\" };",
424
+ "go\u0000CONSTANT\u0000go.EASING_INOUTCUBIC\u0000": "const EASING_INOUTCUBIC: number & { readonly __brand: \"go.EASING_INOUTCUBIC\" };",
425
+ "go\u0000CONSTANT\u0000go.EASING_INOUTELASTIC\u0000": "const EASING_INOUTELASTIC: number & { readonly __brand: \"go.EASING_INOUTELASTIC\" };",
426
+ "go\u0000CONSTANT\u0000go.EASING_INOUTEXPO\u0000": "const EASING_INOUTEXPO: number & { readonly __brand: \"go.EASING_INOUTEXPO\" };",
427
+ "go\u0000CONSTANT\u0000go.EASING_INOUTQUAD\u0000": "const EASING_INOUTQUAD: number & { readonly __brand: \"go.EASING_INOUTQUAD\" };",
428
+ "go\u0000CONSTANT\u0000go.EASING_INOUTQUART\u0000": "const EASING_INOUTQUART: number & { readonly __brand: \"go.EASING_INOUTQUART\" };",
429
+ "go\u0000CONSTANT\u0000go.EASING_INOUTQUINT\u0000": "const EASING_INOUTQUINT: number & { readonly __brand: \"go.EASING_INOUTQUINT\" };",
430
+ "go\u0000CONSTANT\u0000go.EASING_INOUTSINE\u0000": "const EASING_INOUTSINE: number & { readonly __brand: \"go.EASING_INOUTSINE\" };",
431
+ "go\u0000CONSTANT\u0000go.EASING_INQUAD\u0000": "const EASING_INQUAD: number & { readonly __brand: \"go.EASING_INQUAD\" };",
432
+ "go\u0000CONSTANT\u0000go.EASING_INQUART\u0000": "const EASING_INQUART: number & { readonly __brand: \"go.EASING_INQUART\" };",
433
+ "go\u0000CONSTANT\u0000go.EASING_INQUINT\u0000": "const EASING_INQUINT: number & { readonly __brand: \"go.EASING_INQUINT\" };",
434
+ "go\u0000CONSTANT\u0000go.EASING_INSINE\u0000": "const EASING_INSINE: number & { readonly __brand: \"go.EASING_INSINE\" };",
435
+ "go\u0000CONSTANT\u0000go.EASING_LINEAR\u0000": "const EASING_LINEAR: number & { readonly __brand: \"go.EASING_LINEAR\" };",
436
+ "go\u0000CONSTANT\u0000go.EASING_OUTBACK\u0000": "const EASING_OUTBACK: number & { readonly __brand: \"go.EASING_OUTBACK\" };",
437
+ "go\u0000CONSTANT\u0000go.EASING_OUTBOUNCE\u0000": "const EASING_OUTBOUNCE: number & { readonly __brand: \"go.EASING_OUTBOUNCE\" };",
438
+ "go\u0000CONSTANT\u0000go.EASING_OUTCIRC\u0000": "const EASING_OUTCIRC: number & { readonly __brand: \"go.EASING_OUTCIRC\" };",
439
+ "go\u0000CONSTANT\u0000go.EASING_OUTCUBIC\u0000": "const EASING_OUTCUBIC: number & { readonly __brand: \"go.EASING_OUTCUBIC\" };",
440
+ "go\u0000CONSTANT\u0000go.EASING_OUTELASTIC\u0000": "const EASING_OUTELASTIC: number & { readonly __brand: \"go.EASING_OUTELASTIC\" };",
441
+ "go\u0000CONSTANT\u0000go.EASING_OUTEXPO\u0000": "const EASING_OUTEXPO: number & { readonly __brand: \"go.EASING_OUTEXPO\" };",
442
+ "go\u0000CONSTANT\u0000go.EASING_OUTINBACK\u0000": "const EASING_OUTINBACK: number & { readonly __brand: \"go.EASING_OUTINBACK\" };",
443
+ "go\u0000CONSTANT\u0000go.EASING_OUTINBOUNCE\u0000": "const EASING_OUTINBOUNCE: number & { readonly __brand: \"go.EASING_OUTINBOUNCE\" };",
444
+ "go\u0000CONSTANT\u0000go.EASING_OUTINCIRC\u0000": "const EASING_OUTINCIRC: number & { readonly __brand: \"go.EASING_OUTINCIRC\" };",
445
+ "go\u0000CONSTANT\u0000go.EASING_OUTINCUBIC\u0000": "const EASING_OUTINCUBIC: number & { readonly __brand: \"go.EASING_OUTINCUBIC\" };",
446
+ "go\u0000CONSTANT\u0000go.EASING_OUTINELASTIC\u0000": "const EASING_OUTINELASTIC: number & { readonly __brand: \"go.EASING_OUTINELASTIC\" };",
447
+ "go\u0000CONSTANT\u0000go.EASING_OUTINEXPO\u0000": "const EASING_OUTINEXPO: number & { readonly __brand: \"go.EASING_OUTINEXPO\" };",
448
+ "go\u0000CONSTANT\u0000go.EASING_OUTINQUAD\u0000": "const EASING_OUTINQUAD: number & { readonly __brand: \"go.EASING_OUTINQUAD\" };",
449
+ "go\u0000CONSTANT\u0000go.EASING_OUTINQUART\u0000": "const EASING_OUTINQUART: number & { readonly __brand: \"go.EASING_OUTINQUART\" };",
450
+ "go\u0000CONSTANT\u0000go.EASING_OUTINQUINT\u0000": "const EASING_OUTINQUINT: number & { readonly __brand: \"go.EASING_OUTINQUINT\" };",
451
+ "go\u0000CONSTANT\u0000go.EASING_OUTINSINE\u0000": "const EASING_OUTINSINE: number & { readonly __brand: \"go.EASING_OUTINSINE\" };",
452
+ "go\u0000CONSTANT\u0000go.EASING_OUTQUAD\u0000": "const EASING_OUTQUAD: number & { readonly __brand: \"go.EASING_OUTQUAD\" };",
453
+ "go\u0000CONSTANT\u0000go.EASING_OUTQUART\u0000": "const EASING_OUTQUART: number & { readonly __brand: \"go.EASING_OUTQUART\" };",
454
+ "go\u0000CONSTANT\u0000go.EASING_OUTQUINT\u0000": "const EASING_OUTQUINT: number & { readonly __brand: \"go.EASING_OUTQUINT\" };",
455
+ "go\u0000CONSTANT\u0000go.EASING_OUTSINE\u0000": "const EASING_OUTSINE: number & { readonly __brand: \"go.EASING_OUTSINE\" };",
456
+ "go\u0000CONSTANT\u0000go.PLAYBACK_LOOP_BACKWARD\u0000": "const PLAYBACK_LOOP_BACKWARD: number & { readonly __brand: \"go.PLAYBACK_LOOP_BACKWARD\" };",
457
+ "go\u0000CONSTANT\u0000go.PLAYBACK_LOOP_FORWARD\u0000": "const PLAYBACK_LOOP_FORWARD: number & { readonly __brand: \"go.PLAYBACK_LOOP_FORWARD\" };",
458
+ "go\u0000CONSTANT\u0000go.PLAYBACK_LOOP_PINGPONG\u0000": "const PLAYBACK_LOOP_PINGPONG: number & { readonly __brand: \"go.PLAYBACK_LOOP_PINGPONG\" };",
459
+ "go\u0000CONSTANT\u0000go.PLAYBACK_NONE\u0000": "const PLAYBACK_NONE: number & { readonly __brand: \"go.PLAYBACK_NONE\" };",
460
+ "go\u0000CONSTANT\u0000go.PLAYBACK_ONCE_BACKWARD\u0000": "const PLAYBACK_ONCE_BACKWARD: number & { readonly __brand: \"go.PLAYBACK_ONCE_BACKWARD\" };",
461
+ "go\u0000CONSTANT\u0000go.PLAYBACK_ONCE_FORWARD\u0000": "const PLAYBACK_ONCE_FORWARD: number & { readonly __brand: \"go.PLAYBACK_ONCE_FORWARD\" };",
462
+ "go\u0000CONSTANT\u0000go.PLAYBACK_ONCE_PINGPONG\u0000": "const PLAYBACK_ONCE_PINGPONG: number & { readonly __brand: \"go.PLAYBACK_ONCE_PINGPONG\" };",
463
+ "go\u0000FUNCTION\u0000final\u0000[{\"types\":[\"userdata\"],\"isOptional\":false}]->[]": "function final(self: Opaque<\"userdata\">): void;",
464
+ "go\u0000FUNCTION\u0000fixed_update\u0000[{\"types\":[\"userdata\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function fixed_update(self: Opaque<\"userdata\">, dt: number): void;",
465
+ "go\u0000FUNCTION\u0000go.animate\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"go.PLAYBACK_LOOP_BACKWARD\",\"go.PLAYBACK_LOOP_FORWARD\",\"go.PLAYBACK_LOOP_PINGPONG\",\"go.PLAYBACK_ONCE_BACKWARD\",\"go.PLAYBACK_ONCE_FORWARD\",\"go.PLAYBACK_ONCE_PINGPONG\"],\"isOptional\":false},{\"types\":[\"number\",\"quaternion\",\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"go.EASING_INBACK\",\"go.EASING_INBOUNCE\",\"go.EASING_INCIRC\",\"go.EASING_INCUBIC\",\"go.EASING_INELASTIC\",\"go.EASING_INEXPO\",\"go.EASING_INOUTBACK\",\"go.EASING_INOUTBOUNCE\",\"go.EASING_INOUTCIRC\",\"go.EASING_INOUTCUBIC\",\"go.EASING_INOUTELASTIC\",\"go.EASING_INOUTEXPO\",\"go.EASING_INOUTQUAD\",\"go.EASING_INOUTQUART\",\"go.EASING_INOUTQUINT\",\"go.EASING_INOUTSINE\",\"go.EASING_INQUAD\",\"go.EASING_INQUART\",\"go.EASING_INQUINT\",\"go.EASING_INSINE\",\"go.EASING_LINEAR\",\"go.EASING_OUTBACK\",\"go.EASING_OUTBOUNCE\",\"go.EASING_OUTCIRC\",\"go.EASING_OUTCUBIC\",\"go.EASING_OUTELASTIC\",\"go.EASING_OUTEXPO\",\"go.EASING_OUTINBACK\",\"go.EASING_OUTINBOUNCE\",\"go.EASING_OUTINCIRC\",\"go.EASING_OUTINCUBIC\",\"go.EASING_OUTINELASTIC\",\"go.EASING_OUTINEXPO\",\"go.EASING_OUTINQUAD\",\"go.EASING_OUTINQUART\",\"go.EASING_OUTINQUINT\",\"go.EASING_OUTINSINE\",\"go.EASING_OUTQUAD\",\"go.EASING_OUTQUART\",\"go.EASING_OUTQUINT\",\"go.EASING_OUTSINE\",\"vector\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true},{\"types\":[\"function(self, url, property)\"],\"isOptional\":true}]->[]": "function animate(url: string | Hash | Url, property: string | Hash, playback: number & { readonly __brand: \"go.PLAYBACK_ONCE_FORWARD\" } | number & { readonly __brand: \"go.PLAYBACK_ONCE_BACKWARD\" } | number & { readonly __brand: \"go.PLAYBACK_ONCE_PINGPONG\" } | number & { readonly __brand: \"go.PLAYBACK_LOOP_FORWARD\" } | number & { readonly __brand: \"go.PLAYBACK_LOOP_BACKWARD\" } | number & { readonly __brand: \"go.PLAYBACK_LOOP_PINGPONG\" }, to: number | Vector3 | Vector4 | Quaternion, easing: Vector | number & { readonly __brand: \"go.EASING_INBACK\" } | number & { readonly __brand: \"go.EASING_INBOUNCE\" } | number & { readonly __brand: \"go.EASING_INCIRC\" } | number & { readonly __brand: \"go.EASING_INCUBIC\" } | number & { readonly __brand: \"go.EASING_INELASTIC\" } | number & { readonly __brand: \"go.EASING_INEXPO\" } | number & { readonly __brand: \"go.EASING_INOUTBACK\" } | number & { readonly __brand: \"go.EASING_INOUTBOUNCE\" } | number & { readonly __brand: \"go.EASING_INOUTCIRC\" } | number & { readonly __brand: \"go.EASING_INOUTCUBIC\" } | number & { readonly __brand: \"go.EASING_INOUTELASTIC\" } | number & { readonly __brand: \"go.EASING_INOUTEXPO\" } | number & { readonly __brand: \"go.EASING_INOUTQUAD\" } | number & { readonly __brand: \"go.EASING_INOUTQUART\" } | number & { readonly __brand: \"go.EASING_INOUTQUINT\" } | number & { readonly __brand: \"go.EASING_INOUTSINE\" } | number & { readonly __brand: \"go.EASING_INQUAD\" } | number & { readonly __brand: \"go.EASING_INQUART\" } | number & { readonly __brand: \"go.EASING_INQUINT\" } | number & { readonly __brand: \"go.EASING_INSINE\" } | number & { readonly __brand: \"go.EASING_LINEAR\" } | number & { readonly __brand: \"go.EASING_OUTBACK\" } | number & { readonly __brand: \"go.EASING_OUTBOUNCE\" } | number & { readonly __brand: \"go.EASING_OUTCIRC\" } | number & { readonly __brand: \"go.EASING_OUTCUBIC\" } | number & { readonly __brand: \"go.EASING_OUTELASTIC\" } | number & { readonly __brand: \"go.EASING_OUTEXPO\" } | number & { readonly __brand: \"go.EASING_OUTINBACK\" } | number & { readonly __brand: \"go.EASING_OUTINBOUNCE\" } | number & { readonly __brand: \"go.EASING_OUTINCIRC\" } | number & { readonly __brand: \"go.EASING_OUTINCUBIC\" } | number & { readonly __brand: \"go.EASING_OUTINELASTIC\" } | number & { readonly __brand: \"go.EASING_OUTINEXPO\" } | number & { readonly __brand: \"go.EASING_OUTINQUAD\" } | number & { readonly __brand: \"go.EASING_OUTINQUART\" } | number & { readonly __brand: \"go.EASING_OUTINQUINT\" } | number & { readonly __brand: \"go.EASING_OUTINSINE\" } | number & { readonly __brand: \"go.EASING_OUTQUAD\" } | number & { readonly __brand: \"go.EASING_OUTQUART\" } | number & { readonly __brand: \"go.EASING_OUTQUINT\" } | number & { readonly __brand: \"go.EASING_OUTSINE\" }, duration: number, delay?: number, complete_function?: (self: unknown, url: unknown, property: unknown) => void): void;",
466
+ "go\u0000FUNCTION\u0000go.cancel_animations\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":true}]->[]": "function cancel_animations(url: string | Hash | Url, property?: string | Hash): void;",
467
+ "go\u0000FUNCTION\u0000go.delete\u0000[{\"types\":[\"hash\",\"string\",\"table\",\"url\"],\"isOptional\":true},{\"types\":[\"boolean\"],\"isOptional\":true}]->[]": "function _delete(id?: string | Hash | Url | (string | Hash | Url)[], recursive?: boolean): void;",
468
+ "go\u0000FUNCTION\u0000go.exists\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function exists(url: string | Hash | Url): boolean;",
469
+ "go\u0000FUNCTION\u0000go.get_id\u0000[{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_id(path?: string): Hash;",
470
+ "go\u0000FUNCTION\u0000go.get_parent\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"hash\",\"nil\"],\"isOptional\":false}]": "function get_parent(id?: string | Hash | Url): Hash | unknown;",
471
+ "go\u0000FUNCTION\u0000go.get_position\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_position(id?: string | Hash | Url): Vector3;",
472
+ "go\u0000FUNCTION\u0000go.get_rotation\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function get_rotation(id?: string | Hash | Url): Quaternion;",
473
+ "go\u0000FUNCTION\u0000go.get_scale\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_scale(id?: string | Hash | Url): Vector3;",
474
+ "go\u0000FUNCTION\u0000go.get_scale_uniform\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_scale_uniform(id?: string | Hash | Url): number;",
475
+ "go\u0000FUNCTION\u0000go.get_world_position\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_world_position(id?: string | Hash | Url): Vector3;",
476
+ "go\u0000FUNCTION\u0000go.get_world_rotation\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function get_world_rotation(id?: string | Hash | Url): Quaternion;",
477
+ "go\u0000FUNCTION\u0000go.get_world_scale\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_world_scale(id?: string | Hash | Url): Vector3;",
478
+ "go\u0000FUNCTION\u0000go.get_world_scale_uniform\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_world_scale_uniform(id?: string | Hash | Url): number;",
479
+ "go\u0000FUNCTION\u0000go.get_world_transform\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function get_world_transform(id?: string | Hash | Url): Matrix4;",
480
+ "go\u0000FUNCTION\u0000go.set_parent\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true},{\"types\":[\"boolean\"],\"isOptional\":true}]->[]": "function set_parent(id?: string | Hash | Url, parent_id?: string | Hash | Url, keep_world_transform?: boolean): void;",
481
+ "go\u0000FUNCTION\u0000go.set_position\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[]": "function set_position(position: Vector3, id?: string | Hash | Url): void;",
482
+ "go\u0000FUNCTION\u0000go.set_rotation\u0000[{\"types\":[\"quaternion\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[]": "function set_rotation(rotation: Quaternion, id?: string | Hash | Url): void;",
483
+ "go\u0000FUNCTION\u0000go.set_scale\u0000[{\"types\":[\"number\",\"vector3\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[]": "function set_scale(scale: number | Vector3, id?: string | Hash | Url): void;",
484
+ "go\u0000FUNCTION\u0000go.set_scale_xy\u0000[{\"types\":[\"number\",\"vector3\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[]": "function set_scale_xy(scale: number | Vector3, id?: string | Hash | Url): void;",
485
+ "go\u0000FUNCTION\u0000go.update_world_transform\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[]": "function update_world_transform(id?: string | Hash | Url): void;",
486
+ "go\u0000FUNCTION\u0000go.world_to_local_position\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function world_to_local_position(position: Vector3, url: string | Hash | Url): Vector3;",
487
+ "go\u0000FUNCTION\u0000go.world_to_local_transform\u0000[{\"types\":[\"matrix4\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function world_to_local_transform(transformation: Matrix4, url: string | Hash | Url): Matrix4;",
488
+ "go\u0000FUNCTION\u0000init\u0000[{\"types\":[\"userdata\"],\"isOptional\":false}]->[]": "function init(self: Opaque<\"userdata\">): void;",
489
+ "go\u0000FUNCTION\u0000late_update\u0000[{\"types\":[\"userdata\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function late_update(self: Opaque<\"userdata\">, dt: number): void;",
490
+ "go\u0000FUNCTION\u0000on_input\u0000[{\"types\":[\"userdata\"],\"isOptional\":false},{\"types\":[\"hash\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"boolean\",\"nil\"],\"isOptional\":false}]": "function on_input(self: Opaque<\"userdata\">, action_id: Hash, action: { value?: number; pressed?: boolean; released?: boolean; repeated?: boolean; x?: number; y?: number; screen_x?: number; screen_y?: number; dx?: number; dy?: number; screen_dx?: number; screen_dy?: number; gamepad?: number; gamepad_axis?: Vector3; touch?: { id?: number; pressed?: boolean; released?: boolean; tap_count?: number; x?: number; y?: number; dx?: number; dy?: number; acc_x?: number; acc_y?: number; acc_z?: number }[]; text?: string }): boolean | unknown;",
491
+ "go\u0000FUNCTION\u0000on_message\u0000[{\"types\":[\"userdata\"],\"isOptional\":false},{\"types\":[\"hash\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"url\"],\"isOptional\":false}]->[]": "function on_message(self: Opaque<\"userdata\">, message_id: Hash, message: Record<string | number, unknown>, sender: Url): void;",
492
+ "go\u0000FUNCTION\u0000on_reload\u0000[{\"types\":[\"userdata\"],\"isOptional\":false}]->[]": "function on_reload(self: Opaque<\"userdata\">): void;",
493
+ "go\u0000FUNCTION\u0000update\u0000[{\"types\":[\"userdata\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function update(self: Opaque<\"userdata\">, dt: number): void;",
494
+ "go\u0000PROPERTY\u0000euler\u0000": "euler: Vector3;",
495
+ "go\u0000PROPERTY\u0000position\u0000": "position: Vector3;",
496
+ "go\u0000PROPERTY\u0000rotation\u0000": "rotation: Quaternion;",
497
+ "go\u0000PROPERTY\u0000scale\u0000": "scale: number;",
498
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_EQUATION_ADD\u0000": "const BLEND_EQUATION_ADD: number & { readonly __brand: \"graphics.BLEND_EQUATION_ADD\" };",
499
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_EQUATION_MAX\u0000": "const BLEND_EQUATION_MAX: number & { readonly __brand: \"graphics.BLEND_EQUATION_MAX\" };",
500
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_EQUATION_MIN\u0000": "const BLEND_EQUATION_MIN: number & { readonly __brand: \"graphics.BLEND_EQUATION_MIN\" };",
501
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_EQUATION_REVERSE_SUBTRACT\u0000": "const BLEND_EQUATION_REVERSE_SUBTRACT: number & { readonly __brand: \"graphics.BLEND_EQUATION_REVERSE_SUBTRACT\" };",
502
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_EQUATION_SUBTRACT\u0000": "const BLEND_EQUATION_SUBTRACT: number & { readonly __brand: \"graphics.BLEND_EQUATION_SUBTRACT\" };",
503
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_CONSTANT_ALPHA\u0000": "const BLEND_FACTOR_CONSTANT_ALPHA: number & { readonly __brand: \"graphics.BLEND_FACTOR_CONSTANT_ALPHA\" };",
504
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_CONSTANT_COLOR\u0000": "const BLEND_FACTOR_CONSTANT_COLOR: number & { readonly __brand: \"graphics.BLEND_FACTOR_CONSTANT_COLOR\" };",
505
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_DST_ALPHA\u0000": "const BLEND_FACTOR_DST_ALPHA: number & { readonly __brand: \"graphics.BLEND_FACTOR_DST_ALPHA\" };",
506
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_DST_COLOR\u0000": "const BLEND_FACTOR_DST_COLOR: number & { readonly __brand: \"graphics.BLEND_FACTOR_DST_COLOR\" };",
507
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_ONE\u0000": "const BLEND_FACTOR_ONE: number & { readonly __brand: \"graphics.BLEND_FACTOR_ONE\" };",
508
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA\u0000": "const BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA: number & { readonly __brand: \"graphics.BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA\" };",
509
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR\u0000": "const BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR: number & { readonly __brand: \"graphics.BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR\" };",
510
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_ONE_MINUS_DST_ALPHA\u0000": "const BLEND_FACTOR_ONE_MINUS_DST_ALPHA: number & { readonly __brand: \"graphics.BLEND_FACTOR_ONE_MINUS_DST_ALPHA\" };",
511
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_ONE_MINUS_DST_COLOR\u0000": "const BLEND_FACTOR_ONE_MINUS_DST_COLOR: number & { readonly __brand: \"graphics.BLEND_FACTOR_ONE_MINUS_DST_COLOR\" };",
512
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_ONE_MINUS_SRC_ALPHA\u0000": "const BLEND_FACTOR_ONE_MINUS_SRC_ALPHA: number & { readonly __brand: \"graphics.BLEND_FACTOR_ONE_MINUS_SRC_ALPHA\" };",
513
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_ONE_MINUS_SRC_COLOR\u0000": "const BLEND_FACTOR_ONE_MINUS_SRC_COLOR: number & { readonly __brand: \"graphics.BLEND_FACTOR_ONE_MINUS_SRC_COLOR\" };",
514
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_SRC_ALPHA\u0000": "const BLEND_FACTOR_SRC_ALPHA: number & { readonly __brand: \"graphics.BLEND_FACTOR_SRC_ALPHA\" };",
515
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_SRC_ALPHA_SATURATE\u0000": "const BLEND_FACTOR_SRC_ALPHA_SATURATE: number & { readonly __brand: \"graphics.BLEND_FACTOR_SRC_ALPHA_SATURATE\" };",
516
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_SRC_COLOR\u0000": "const BLEND_FACTOR_SRC_COLOR: number & { readonly __brand: \"graphics.BLEND_FACTOR_SRC_COLOR\" };",
517
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_ZERO\u0000": "const BLEND_FACTOR_ZERO: number & { readonly __brand: \"graphics.BLEND_FACTOR_ZERO\" };",
518
+ "graphics\u0000CONSTANT\u0000graphics.BUFFER_TYPE_COLOR0_BIT\u0000": "const BUFFER_TYPE_COLOR0_BIT: number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR0_BIT\" };",
519
+ "graphics\u0000CONSTANT\u0000graphics.BUFFER_TYPE_COLOR1_BIT\u0000": "const BUFFER_TYPE_COLOR1_BIT: number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR1_BIT\" };",
520
+ "graphics\u0000CONSTANT\u0000graphics.BUFFER_TYPE_COLOR2_BIT\u0000": "const BUFFER_TYPE_COLOR2_BIT: number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR2_BIT\" };",
521
+ "graphics\u0000CONSTANT\u0000graphics.BUFFER_TYPE_COLOR3_BIT\u0000": "const BUFFER_TYPE_COLOR3_BIT: number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR3_BIT\" };",
522
+ "graphics\u0000CONSTANT\u0000graphics.BUFFER_TYPE_DEPTH_BIT\u0000": "const BUFFER_TYPE_DEPTH_BIT: number & { readonly __brand: \"graphics.BUFFER_TYPE_DEPTH_BIT\" };",
523
+ "graphics\u0000CONSTANT\u0000graphics.BUFFER_TYPE_STENCIL_BIT\u0000": "const BUFFER_TYPE_STENCIL_BIT: number & { readonly __brand: \"graphics.BUFFER_TYPE_STENCIL_BIT\" };",
524
+ "graphics\u0000CONSTANT\u0000graphics.COMPARE_FUNC_ALWAYS\u0000": "const COMPARE_FUNC_ALWAYS: number & { readonly __brand: \"graphics.COMPARE_FUNC_ALWAYS\" };",
525
+ "graphics\u0000CONSTANT\u0000graphics.COMPARE_FUNC_EQUAL\u0000": "const COMPARE_FUNC_EQUAL: number & { readonly __brand: \"graphics.COMPARE_FUNC_EQUAL\" };",
526
+ "graphics\u0000CONSTANT\u0000graphics.COMPARE_FUNC_GEQUAL\u0000": "const COMPARE_FUNC_GEQUAL: number & { readonly __brand: \"graphics.COMPARE_FUNC_GEQUAL\" };",
527
+ "graphics\u0000CONSTANT\u0000graphics.COMPARE_FUNC_GREATER\u0000": "const COMPARE_FUNC_GREATER: number & { readonly __brand: \"graphics.COMPARE_FUNC_GREATER\" };",
528
+ "graphics\u0000CONSTANT\u0000graphics.COMPARE_FUNC_LEQUAL\u0000": "const COMPARE_FUNC_LEQUAL: number & { readonly __brand: \"graphics.COMPARE_FUNC_LEQUAL\" };",
529
+ "graphics\u0000CONSTANT\u0000graphics.COMPARE_FUNC_LESS\u0000": "const COMPARE_FUNC_LESS: number & { readonly __brand: \"graphics.COMPARE_FUNC_LESS\" };",
530
+ "graphics\u0000CONSTANT\u0000graphics.COMPARE_FUNC_NEVER\u0000": "const COMPARE_FUNC_NEVER: number & { readonly __brand: \"graphics.COMPARE_FUNC_NEVER\" };",
531
+ "graphics\u0000CONSTANT\u0000graphics.COMPARE_FUNC_NOTEQUAL\u0000": "const COMPARE_FUNC_NOTEQUAL: number & { readonly __brand: \"graphics.COMPARE_FUNC_NOTEQUAL\" };",
532
+ "graphics\u0000CONSTANT\u0000graphics.COMPRESSION_TYPE_BASIS_ETC1S\u0000": "const COMPRESSION_TYPE_BASIS_ETC1S: number & { readonly __brand: \"graphics.COMPRESSION_TYPE_BASIS_ETC1S\" };",
533
+ "graphics\u0000CONSTANT\u0000graphics.COMPRESSION_TYPE_BASIS_UASTC\u0000": "const COMPRESSION_TYPE_BASIS_UASTC: number & { readonly __brand: \"graphics.COMPRESSION_TYPE_BASIS_UASTC\" };",
534
+ "graphics\u0000CONSTANT\u0000graphics.COMPRESSION_TYPE_DEFAULT\u0000": "const COMPRESSION_TYPE_DEFAULT: number & { readonly __brand: \"graphics.COMPRESSION_TYPE_DEFAULT\" };",
535
+ "graphics\u0000CONSTANT\u0000graphics.COMPRESSION_TYPE_WEBP\u0000": "const COMPRESSION_TYPE_WEBP: number & { readonly __brand: \"graphics.COMPRESSION_TYPE_WEBP\" };",
536
+ "graphics\u0000CONSTANT\u0000graphics.COMPRESSION_TYPE_WEBP_LOSSY\u0000": "const COMPRESSION_TYPE_WEBP_LOSSY: number & { readonly __brand: \"graphics.COMPRESSION_TYPE_WEBP_LOSSY\" };",
537
+ "graphics\u0000CONSTANT\u0000graphics.CONTEXT_FEATURE_3D_TEXTURES\u0000": "const CONTEXT_FEATURE_3D_TEXTURES: number & { readonly __brand: \"graphics.CONTEXT_FEATURE_3D_TEXTURES\" };",
538
+ "graphics\u0000CONSTANT\u0000graphics.CONTEXT_FEATURE_ASTC_ARRAY_TEXTURES\u0000": "const CONTEXT_FEATURE_ASTC_ARRAY_TEXTURES: number & { readonly __brand: \"graphics.CONTEXT_FEATURE_ASTC_ARRAY_TEXTURES\" };",
539
+ "graphics\u0000CONSTANT\u0000graphics.CONTEXT_FEATURE_BLEND_EQUATION_MIN_MAX\u0000": "const CONTEXT_FEATURE_BLEND_EQUATION_MIN_MAX: number & { readonly __brand: \"graphics.CONTEXT_FEATURE_BLEND_EQUATION_MIN_MAX\" };",
540
+ "graphics\u0000CONSTANT\u0000graphics.CONTEXT_FEATURE_COMPUTE_SHADER\u0000": "const CONTEXT_FEATURE_COMPUTE_SHADER: number & { readonly __brand: \"graphics.CONTEXT_FEATURE_COMPUTE_SHADER\" };",
541
+ "graphics\u0000CONSTANT\u0000graphics.CONTEXT_FEATURE_INSTANCING\u0000": "const CONTEXT_FEATURE_INSTANCING: number & { readonly __brand: \"graphics.CONTEXT_FEATURE_INSTANCING\" };",
542
+ "graphics\u0000CONSTANT\u0000graphics.CONTEXT_FEATURE_MULTI_TARGET_RENDERING\u0000": "const CONTEXT_FEATURE_MULTI_TARGET_RENDERING: number & { readonly __brand: \"graphics.CONTEXT_FEATURE_MULTI_TARGET_RENDERING\" };",
543
+ "graphics\u0000CONSTANT\u0000graphics.CONTEXT_FEATURE_STORAGE_BUFFER\u0000": "const CONTEXT_FEATURE_STORAGE_BUFFER: number & { readonly __brand: \"graphics.CONTEXT_FEATURE_STORAGE_BUFFER\" };",
544
+ "graphics\u0000CONSTANT\u0000graphics.CONTEXT_FEATURE_TEXTURE_ARRAY\u0000": "const CONTEXT_FEATURE_TEXTURE_ARRAY: number & { readonly __brand: \"graphics.CONTEXT_FEATURE_TEXTURE_ARRAY\" };",
545
+ "graphics\u0000CONSTANT\u0000graphics.CONTEXT_FEATURE_VSYNC\u0000": "const CONTEXT_FEATURE_VSYNC: number & { readonly __brand: \"graphics.CONTEXT_FEATURE_VSYNC\" };",
546
+ "graphics\u0000CONSTANT\u0000graphics.FACE_TYPE_BACK\u0000": "const FACE_TYPE_BACK: number & { readonly __brand: \"graphics.FACE_TYPE_BACK\" };",
547
+ "graphics\u0000CONSTANT\u0000graphics.FACE_TYPE_FRONT\u0000": "const FACE_TYPE_FRONT: number & { readonly __brand: \"graphics.FACE_TYPE_FRONT\" };",
548
+ "graphics\u0000CONSTANT\u0000graphics.FACE_TYPE_FRONT_AND_BACK\u0000": "const FACE_TYPE_FRONT_AND_BACK: number & { readonly __brand: \"graphics.FACE_TYPE_FRONT_AND_BACK\" };",
549
+ "graphics\u0000CONSTANT\u0000graphics.STATE_ALPHA_TEST\u0000": "const STATE_ALPHA_TEST: number & { readonly __brand: \"graphics.STATE_ALPHA_TEST\" };",
550
+ "graphics\u0000CONSTANT\u0000graphics.STATE_ALPHA_TEST_SUPPORTED\u0000": "const STATE_ALPHA_TEST_SUPPORTED: number & { readonly __brand: \"graphics.STATE_ALPHA_TEST_SUPPORTED\" };",
551
+ "graphics\u0000CONSTANT\u0000graphics.STATE_BLEND\u0000": "const STATE_BLEND: number & { readonly __brand: \"graphics.STATE_BLEND\" };",
552
+ "graphics\u0000CONSTANT\u0000graphics.STATE_CULL_FACE\u0000": "const STATE_CULL_FACE: number & { readonly __brand: \"graphics.STATE_CULL_FACE\" };",
553
+ "graphics\u0000CONSTANT\u0000graphics.STATE_DEPTH_TEST\u0000": "const STATE_DEPTH_TEST: number & { readonly __brand: \"graphics.STATE_DEPTH_TEST\" };",
554
+ "graphics\u0000CONSTANT\u0000graphics.STATE_POLYGON_OFFSET_FILL\u0000": "const STATE_POLYGON_OFFSET_FILL: number & { readonly __brand: \"graphics.STATE_POLYGON_OFFSET_FILL\" };",
555
+ "graphics\u0000CONSTANT\u0000graphics.STATE_SCISSOR_TEST\u0000": "const STATE_SCISSOR_TEST: number & { readonly __brand: \"graphics.STATE_SCISSOR_TEST\" };",
556
+ "graphics\u0000CONSTANT\u0000graphics.STATE_STENCIL_TEST\u0000": "const STATE_STENCIL_TEST: number & { readonly __brand: \"graphics.STATE_STENCIL_TEST\" };",
557
+ "graphics\u0000CONSTANT\u0000graphics.STENCIL_OP_DECR\u0000": "const STENCIL_OP_DECR: number & { readonly __brand: \"graphics.STENCIL_OP_DECR\" };",
558
+ "graphics\u0000CONSTANT\u0000graphics.STENCIL_OP_DECR_WRAP\u0000": "const STENCIL_OP_DECR_WRAP: number & { readonly __brand: \"graphics.STENCIL_OP_DECR_WRAP\" };",
559
+ "graphics\u0000CONSTANT\u0000graphics.STENCIL_OP_INCR\u0000": "const STENCIL_OP_INCR: number & { readonly __brand: \"graphics.STENCIL_OP_INCR\" };",
560
+ "graphics\u0000CONSTANT\u0000graphics.STENCIL_OP_INCR_WRAP\u0000": "const STENCIL_OP_INCR_WRAP: number & { readonly __brand: \"graphics.STENCIL_OP_INCR_WRAP\" };",
561
+ "graphics\u0000CONSTANT\u0000graphics.STENCIL_OP_INVERT\u0000": "const STENCIL_OP_INVERT: number & { readonly __brand: \"graphics.STENCIL_OP_INVERT\" };",
562
+ "graphics\u0000CONSTANT\u0000graphics.STENCIL_OP_KEEP\u0000": "const STENCIL_OP_KEEP: number & { readonly __brand: \"graphics.STENCIL_OP_KEEP\" };",
563
+ "graphics\u0000CONSTANT\u0000graphics.STENCIL_OP_REPLACE\u0000": "const STENCIL_OP_REPLACE: number & { readonly __brand: \"graphics.STENCIL_OP_REPLACE\" };",
564
+ "graphics\u0000CONSTANT\u0000graphics.STENCIL_OP_ZERO\u0000": "const STENCIL_OP_ZERO: number & { readonly __brand: \"graphics.STENCIL_OP_ZERO\" };",
565
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FILTER_DEFAULT\u0000": "const TEXTURE_FILTER_DEFAULT: number & { readonly __brand: \"graphics.TEXTURE_FILTER_DEFAULT\" };",
566
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FILTER_LINEAR\u0000": "const TEXTURE_FILTER_LINEAR: number & { readonly __brand: \"graphics.TEXTURE_FILTER_LINEAR\" };",
567
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FILTER_LINEAR_MIPMAP_LINEAR\u0000": "const TEXTURE_FILTER_LINEAR_MIPMAP_LINEAR: number & { readonly __brand: \"graphics.TEXTURE_FILTER_LINEAR_MIPMAP_LINEAR\" };",
568
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FILTER_LINEAR_MIPMAP_NEAREST\u0000": "const TEXTURE_FILTER_LINEAR_MIPMAP_NEAREST: number & { readonly __brand: \"graphics.TEXTURE_FILTER_LINEAR_MIPMAP_NEAREST\" };",
569
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FILTER_NEAREST\u0000": "const TEXTURE_FILTER_NEAREST: number & { readonly __brand: \"graphics.TEXTURE_FILTER_NEAREST\" };",
570
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FILTER_NEAREST_MIPMAP_LINEAR\u0000": "const TEXTURE_FILTER_NEAREST_MIPMAP_LINEAR: number & { readonly __brand: \"graphics.TEXTURE_FILTER_NEAREST_MIPMAP_LINEAR\" };",
571
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FILTER_NEAREST_MIPMAP_NEAREST\u0000": "const TEXTURE_FILTER_NEAREST_MIPMAP_NEAREST: number & { readonly __brand: \"graphics.TEXTURE_FILTER_NEAREST_MIPMAP_NEAREST\" };",
572
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_BGRA8U\u0000": "const TEXTURE_FORMAT_BGRA8U: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_BGRA8U\" };",
573
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_DEPTH\u0000": "const TEXTURE_FORMAT_DEPTH: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_DEPTH\" };",
574
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_LUMINANCE\u0000": "const TEXTURE_FORMAT_LUMINANCE: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_LUMINANCE\" };",
575
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_LUMINANCE_ALPHA\u0000": "const TEXTURE_FORMAT_LUMINANCE_ALPHA: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_LUMINANCE_ALPHA\" };",
576
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_R16F\u0000": "const TEXTURE_FORMAT_R16F: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_R16F\" };",
577
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_R32F\u0000": "const TEXTURE_FORMAT_R32F: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_R32F\" };",
578
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_R32UI\u0000": "const TEXTURE_FORMAT_R32UI: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_R32UI\" };",
579
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RG16F\u0000": "const TEXTURE_FORMAT_RG16F: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RG16F\" };",
580
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RG32F\u0000": "const TEXTURE_FORMAT_RG32F: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RG32F\" };",
581
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGB\u0000": "const TEXTURE_FORMAT_RGB: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGB\" };",
582
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGB16F\u0000": "const TEXTURE_FORMAT_RGB16F: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGB16F\" };",
583
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGB32F\u0000": "const TEXTURE_FORMAT_RGB32F: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGB32F\" };",
584
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA\u0000": "const TEXTURE_FORMAT_RGBA: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA\" };",
585
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA16F\u0000": "const TEXTURE_FORMAT_RGBA16F: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA16F\" };",
586
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA32F\u0000": "const TEXTURE_FORMAT_RGBA32F: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA32F\" };",
587
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA32UI\u0000": "const TEXTURE_FORMAT_RGBA32UI: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA32UI\" };",
588
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA_16BPP\u0000": "const TEXTURE_FORMAT_RGBA_16BPP: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA_16BPP\" };",
589
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA_ASTC_4X4\u0000": "const TEXTURE_FORMAT_RGBA_ASTC_4X4: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA_ASTC_4X4\" };",
590
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA_BC3\u0000": "const TEXTURE_FORMAT_RGBA_BC3: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA_BC3\" };",
591
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA_BC7\u0000": "const TEXTURE_FORMAT_RGBA_BC7: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA_BC7\" };",
592
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA_ETC2\u0000": "const TEXTURE_FORMAT_RGBA_ETC2: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA_ETC2\" };",
593
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA_PVRTC_2BPPV1\u0000": "const TEXTURE_FORMAT_RGBA_PVRTC_2BPPV1: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA_PVRTC_2BPPV1\" };",
594
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA_PVRTC_4BPPV1\u0000": "const TEXTURE_FORMAT_RGBA_PVRTC_4BPPV1: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA_PVRTC_4BPPV1\" };",
595
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGB_16BPP\u0000": "const TEXTURE_FORMAT_RGB_16BPP: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGB_16BPP\" };",
596
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGB_BC1\u0000": "const TEXTURE_FORMAT_RGB_BC1: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGB_BC1\" };",
597
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGB_ETC1\u0000": "const TEXTURE_FORMAT_RGB_ETC1: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGB_ETC1\" };",
598
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGB_PVRTC_2BPPV1\u0000": "const TEXTURE_FORMAT_RGB_PVRTC_2BPPV1: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGB_PVRTC_2BPPV1\" };",
599
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGB_PVRTC_4BPPV1\u0000": "const TEXTURE_FORMAT_RGB_PVRTC_4BPPV1: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGB_PVRTC_4BPPV1\" };",
600
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RG_BC5\u0000": "const TEXTURE_FORMAT_RG_BC5: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RG_BC5\" };",
601
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RG_ETC2\u0000": "const TEXTURE_FORMAT_RG_ETC2: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RG_ETC2\" };",
602
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_R_BC4\u0000": "const TEXTURE_FORMAT_R_BC4: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_R_BC4\" };",
603
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_R_ETC2\u0000": "const TEXTURE_FORMAT_R_ETC2: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_R_ETC2\" };",
604
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_STENCIL\u0000": "const TEXTURE_FORMAT_STENCIL: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_STENCIL\" };",
605
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_TYPE_2D\u0000": "const TEXTURE_TYPE_2D: number & { readonly __brand: \"graphics.TEXTURE_TYPE_2D\" };",
606
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_TYPE_2D_ARRAY\u0000": "const TEXTURE_TYPE_2D_ARRAY: number & { readonly __brand: \"graphics.TEXTURE_TYPE_2D_ARRAY\" };",
607
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_TYPE_3D\u0000": "const TEXTURE_TYPE_3D: number & { readonly __brand: \"graphics.TEXTURE_TYPE_3D\" };",
608
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_TYPE_CUBE_MAP\u0000": "const TEXTURE_TYPE_CUBE_MAP: number & { readonly __brand: \"graphics.TEXTURE_TYPE_CUBE_MAP\" };",
609
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_TYPE_IMAGE_2D\u0000": "const TEXTURE_TYPE_IMAGE_2D: number & { readonly __brand: \"graphics.TEXTURE_TYPE_IMAGE_2D\" };",
610
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_TYPE_IMAGE_3D\u0000": "const TEXTURE_TYPE_IMAGE_3D: number & { readonly __brand: \"graphics.TEXTURE_TYPE_IMAGE_3D\" };",
611
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_USAGE_FLAG_COLOR\u0000": "const TEXTURE_USAGE_FLAG_COLOR: number & { readonly __brand: \"graphics.TEXTURE_USAGE_FLAG_COLOR\" };",
612
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_USAGE_FLAG_INPUT\u0000": "const TEXTURE_USAGE_FLAG_INPUT: number & { readonly __brand: \"graphics.TEXTURE_USAGE_FLAG_INPUT\" };",
613
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_USAGE_FLAG_MEMORYLESS\u0000": "const TEXTURE_USAGE_FLAG_MEMORYLESS: number & { readonly __brand: \"graphics.TEXTURE_USAGE_FLAG_MEMORYLESS\" };",
614
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_USAGE_FLAG_SAMPLE\u0000": "const TEXTURE_USAGE_FLAG_SAMPLE: number & { readonly __brand: \"graphics.TEXTURE_USAGE_FLAG_SAMPLE\" };",
615
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_USAGE_FLAG_STORAGE\u0000": "const TEXTURE_USAGE_FLAG_STORAGE: number & { readonly __brand: \"graphics.TEXTURE_USAGE_FLAG_STORAGE\" };",
616
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_WRAP_CLAMP_TO_BORDER\u0000": "const TEXTURE_WRAP_CLAMP_TO_BORDER: number & { readonly __brand: \"graphics.TEXTURE_WRAP_CLAMP_TO_BORDER\" };",
617
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_WRAP_CLAMP_TO_EDGE\u0000": "const TEXTURE_WRAP_CLAMP_TO_EDGE: number & { readonly __brand: \"graphics.TEXTURE_WRAP_CLAMP_TO_EDGE\" };",
618
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_WRAP_MIRRORED_REPEAT\u0000": "const TEXTURE_WRAP_MIRRORED_REPEAT: number & { readonly __brand: \"graphics.TEXTURE_WRAP_MIRRORED_REPEAT\" };",
619
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_WRAP_REPEAT\u0000": "const TEXTURE_WRAP_REPEAT: number & { readonly __brand: \"graphics.TEXTURE_WRAP_REPEAT\" };",
620
+ "graphics\u0000FUNCTION\u0000graphics.get_adapter_info\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_adapter_info(): { family: string; version_major: number; version_minor: number; limits: { max_texture_size_2d: number; max_texture_size_3d: number; max_texture_size_cube: number; max_texture_array_layers: number; max_framebuffer_width: number; max_framebuffer_height: number; max_color_attachments: number; max_samplers_per_stage: number; max_textures_per_stage: number; max_vertex_attributes: number; max_vertex_buffers: number; max_compute_workgroup_size_x: number; max_compute_workgroup_size_y: number; max_compute_workgroup_size_z: number; max_compute_workgroup_invocations: number; max_compute_shared_memory_size: number; max_uniform_buffer_range: number; max_storage_buffer_range: number }; extensions: string[]; features: number[] };",
621
+ "graphics\u0000FUNCTION\u0000graphics.get_engine_adapters\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_engine_adapters(): string[];",
622
+ "gui\u0000CONSTANT\u0000gui.ADJUST_FIT\u0000": "const ADJUST_FIT: number & { readonly __brand: \"gui.ADJUST_FIT\" };",
623
+ "gui\u0000CONSTANT\u0000gui.ADJUST_STRETCH\u0000": "const ADJUST_STRETCH: number & { readonly __brand: \"gui.ADJUST_STRETCH\" };",
624
+ "gui\u0000CONSTANT\u0000gui.ADJUST_ZOOM\u0000": "const ADJUST_ZOOM: number & { readonly __brand: \"gui.ADJUST_ZOOM\" };",
625
+ "gui\u0000CONSTANT\u0000gui.ANCHOR_BOTTOM\u0000": "const ANCHOR_BOTTOM: number & { readonly __brand: \"gui.ANCHOR_BOTTOM\" };",
626
+ "gui\u0000CONSTANT\u0000gui.ANCHOR_LEFT\u0000": "const ANCHOR_LEFT: number & { readonly __brand: \"gui.ANCHOR_LEFT\" };",
627
+ "gui\u0000CONSTANT\u0000gui.ANCHOR_NONE\u0000": "const ANCHOR_NONE: number & { readonly __brand: \"gui.ANCHOR_NONE\" };",
628
+ "gui\u0000CONSTANT\u0000gui.ANCHOR_RIGHT\u0000": "const ANCHOR_RIGHT: number & { readonly __brand: \"gui.ANCHOR_RIGHT\" };",
629
+ "gui\u0000CONSTANT\u0000gui.ANCHOR_TOP\u0000": "const ANCHOR_TOP: number & { readonly __brand: \"gui.ANCHOR_TOP\" };",
630
+ "gui\u0000CONSTANT\u0000gui.BLEND_ADD\u0000": "const BLEND_ADD: number & { readonly __brand: \"gui.BLEND_ADD\" };",
631
+ "gui\u0000CONSTANT\u0000gui.BLEND_ADD_ALPHA\u0000": "const BLEND_ADD_ALPHA: number & { readonly __brand: \"gui.BLEND_ADD_ALPHA\" };",
632
+ "gui\u0000CONSTANT\u0000gui.BLEND_ALPHA\u0000": "const BLEND_ALPHA: number & { readonly __brand: \"gui.BLEND_ALPHA\" };",
633
+ "gui\u0000CONSTANT\u0000gui.BLEND_MULT\u0000": "const BLEND_MULT: number & { readonly __brand: \"gui.BLEND_MULT\" };",
634
+ "gui\u0000CONSTANT\u0000gui.BLEND_SCREEN\u0000": "const BLEND_SCREEN: number & { readonly __brand: \"gui.BLEND_SCREEN\" };",
635
+ "gui\u0000CONSTANT\u0000gui.CLIPPING_MODE_NONE\u0000": "const CLIPPING_MODE_NONE: number & { readonly __brand: \"gui.CLIPPING_MODE_NONE\" };",
636
+ "gui\u0000CONSTANT\u0000gui.CLIPPING_MODE_STENCIL\u0000": "const CLIPPING_MODE_STENCIL: number & { readonly __brand: \"gui.CLIPPING_MODE_STENCIL\" };",
637
+ "gui\u0000CONSTANT\u0000gui.EASING_INBACK\u0000": "const EASING_INBACK: number & { readonly __brand: \"gui.EASING_INBACK\" };",
638
+ "gui\u0000CONSTANT\u0000gui.EASING_INBOUNCE\u0000": "const EASING_INBOUNCE: number & { readonly __brand: \"gui.EASING_INBOUNCE\" };",
639
+ "gui\u0000CONSTANT\u0000gui.EASING_INCIRC\u0000": "const EASING_INCIRC: number & { readonly __brand: \"gui.EASING_INCIRC\" };",
640
+ "gui\u0000CONSTANT\u0000gui.EASING_INCUBIC\u0000": "const EASING_INCUBIC: number & { readonly __brand: \"gui.EASING_INCUBIC\" };",
641
+ "gui\u0000CONSTANT\u0000gui.EASING_INELASTIC\u0000": "const EASING_INELASTIC: number & { readonly __brand: \"gui.EASING_INELASTIC\" };",
642
+ "gui\u0000CONSTANT\u0000gui.EASING_INEXPO\u0000": "const EASING_INEXPO: number & { readonly __brand: \"gui.EASING_INEXPO\" };",
643
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTBACK\u0000": "const EASING_INOUTBACK: number & { readonly __brand: \"gui.EASING_INOUTBACK\" };",
644
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTBOUNCE\u0000": "const EASING_INOUTBOUNCE: number & { readonly __brand: \"gui.EASING_INOUTBOUNCE\" };",
645
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTCIRC\u0000": "const EASING_INOUTCIRC: number & { readonly __brand: \"gui.EASING_INOUTCIRC\" };",
646
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTCUBIC\u0000": "const EASING_INOUTCUBIC: number & { readonly __brand: \"gui.EASING_INOUTCUBIC\" };",
647
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTELASTIC\u0000": "const EASING_INOUTELASTIC: number & { readonly __brand: \"gui.EASING_INOUTELASTIC\" };",
648
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTEXPO\u0000": "const EASING_INOUTEXPO: number & { readonly __brand: \"gui.EASING_INOUTEXPO\" };",
649
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTQUAD\u0000": "const EASING_INOUTQUAD: number & { readonly __brand: \"gui.EASING_INOUTQUAD\" };",
650
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTQUART\u0000": "const EASING_INOUTQUART: number & { readonly __brand: \"gui.EASING_INOUTQUART\" };",
651
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTQUINT\u0000": "const EASING_INOUTQUINT: number & { readonly __brand: \"gui.EASING_INOUTQUINT\" };",
652
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTSINE\u0000": "const EASING_INOUTSINE: number & { readonly __brand: \"gui.EASING_INOUTSINE\" };",
653
+ "gui\u0000CONSTANT\u0000gui.EASING_INQUAD\u0000": "const EASING_INQUAD: number & { readonly __brand: \"gui.EASING_INQUAD\" };",
654
+ "gui\u0000CONSTANT\u0000gui.EASING_INQUART\u0000": "const EASING_INQUART: number & { readonly __brand: \"gui.EASING_INQUART\" };",
655
+ "gui\u0000CONSTANT\u0000gui.EASING_INQUINT\u0000": "const EASING_INQUINT: number & { readonly __brand: \"gui.EASING_INQUINT\" };",
656
+ "gui\u0000CONSTANT\u0000gui.EASING_INSINE\u0000": "const EASING_INSINE: number & { readonly __brand: \"gui.EASING_INSINE\" };",
657
+ "gui\u0000CONSTANT\u0000gui.EASING_LINEAR\u0000": "const EASING_LINEAR: number & { readonly __brand: \"gui.EASING_LINEAR\" };",
658
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTBACK\u0000": "const EASING_OUTBACK: number & { readonly __brand: \"gui.EASING_OUTBACK\" };",
659
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTBOUNCE\u0000": "const EASING_OUTBOUNCE: number & { readonly __brand: \"gui.EASING_OUTBOUNCE\" };",
660
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTCIRC\u0000": "const EASING_OUTCIRC: number & { readonly __brand: \"gui.EASING_OUTCIRC\" };",
661
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTCUBIC\u0000": "const EASING_OUTCUBIC: number & { readonly __brand: \"gui.EASING_OUTCUBIC\" };",
662
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTELASTIC\u0000": "const EASING_OUTELASTIC: number & { readonly __brand: \"gui.EASING_OUTELASTIC\" };",
663
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTEXPO\u0000": "const EASING_OUTEXPO: number & { readonly __brand: \"gui.EASING_OUTEXPO\" };",
664
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINBACK\u0000": "const EASING_OUTINBACK: number & { readonly __brand: \"gui.EASING_OUTINBACK\" };",
665
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINBOUNCE\u0000": "const EASING_OUTINBOUNCE: number & { readonly __brand: \"gui.EASING_OUTINBOUNCE\" };",
666
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINCIRC\u0000": "const EASING_OUTINCIRC: number & { readonly __brand: \"gui.EASING_OUTINCIRC\" };",
667
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINCUBIC\u0000": "const EASING_OUTINCUBIC: number & { readonly __brand: \"gui.EASING_OUTINCUBIC\" };",
668
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINELASTIC\u0000": "const EASING_OUTINELASTIC: number & { readonly __brand: \"gui.EASING_OUTINELASTIC\" };",
669
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINEXPO\u0000": "const EASING_OUTINEXPO: number & { readonly __brand: \"gui.EASING_OUTINEXPO\" };",
670
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINQUAD\u0000": "const EASING_OUTINQUAD: number & { readonly __brand: \"gui.EASING_OUTINQUAD\" };",
671
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINQUART\u0000": "const EASING_OUTINQUART: number & { readonly __brand: \"gui.EASING_OUTINQUART\" };",
672
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINQUINT\u0000": "const EASING_OUTINQUINT: number & { readonly __brand: \"gui.EASING_OUTINQUINT\" };",
673
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINSINE\u0000": "const EASING_OUTINSINE: number & { readonly __brand: \"gui.EASING_OUTINSINE\" };",
674
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTQUAD\u0000": "const EASING_OUTQUAD: number & { readonly __brand: \"gui.EASING_OUTQUAD\" };",
675
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTQUART\u0000": "const EASING_OUTQUART: number & { readonly __brand: \"gui.EASING_OUTQUART\" };",
676
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTQUINT\u0000": "const EASING_OUTQUINT: number & { readonly __brand: \"gui.EASING_OUTQUINT\" };",
677
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTSINE\u0000": "const EASING_OUTSINE: number & { readonly __brand: \"gui.EASING_OUTSINE\" };",
678
+ "gui\u0000CONSTANT\u0000gui.KEYBOARD_TYPE_DEFAULT\u0000": "const KEYBOARD_TYPE_DEFAULT: number & { readonly __brand: \"gui.KEYBOARD_TYPE_DEFAULT\" };",
679
+ "gui\u0000CONSTANT\u0000gui.KEYBOARD_TYPE_EMAIL\u0000": "const KEYBOARD_TYPE_EMAIL: number & { readonly __brand: \"gui.KEYBOARD_TYPE_EMAIL\" };",
680
+ "gui\u0000CONSTANT\u0000gui.KEYBOARD_TYPE_NUMBER_PAD\u0000": "const KEYBOARD_TYPE_NUMBER_PAD: number & { readonly __brand: \"gui.KEYBOARD_TYPE_NUMBER_PAD\" };",
681
+ "gui\u0000CONSTANT\u0000gui.KEYBOARD_TYPE_PASSWORD\u0000": "const KEYBOARD_TYPE_PASSWORD: number & { readonly __brand: \"gui.KEYBOARD_TYPE_PASSWORD\" };",
682
+ "gui\u0000CONSTANT\u0000gui.PIEBOUNDS_ELLIPSE\u0000": "const PIEBOUNDS_ELLIPSE: number & { readonly __brand: \"gui.PIEBOUNDS_ELLIPSE\" };",
683
+ "gui\u0000CONSTANT\u0000gui.PIEBOUNDS_RECTANGLE\u0000": "const PIEBOUNDS_RECTANGLE: number & { readonly __brand: \"gui.PIEBOUNDS_RECTANGLE\" };",
684
+ "gui\u0000CONSTANT\u0000gui.PIVOT_CENTER\u0000": "const PIVOT_CENTER: number & { readonly __brand: \"gui.PIVOT_CENTER\" };",
685
+ "gui\u0000CONSTANT\u0000gui.PIVOT_E\u0000": "const PIVOT_E: number & { readonly __brand: \"gui.PIVOT_E\" };",
686
+ "gui\u0000CONSTANT\u0000gui.PIVOT_N\u0000": "const PIVOT_N: number & { readonly __brand: \"gui.PIVOT_N\" };",
687
+ "gui\u0000CONSTANT\u0000gui.PIVOT_NE\u0000": "const PIVOT_NE: number & { readonly __brand: \"gui.PIVOT_NE\" };",
688
+ "gui\u0000CONSTANT\u0000gui.PIVOT_NW\u0000": "const PIVOT_NW: number & { readonly __brand: \"gui.PIVOT_NW\" };",
689
+ "gui\u0000CONSTANT\u0000gui.PIVOT_S\u0000": "const PIVOT_S: number & { readonly __brand: \"gui.PIVOT_S\" };",
690
+ "gui\u0000CONSTANT\u0000gui.PIVOT_SE\u0000": "const PIVOT_SE: number & { readonly __brand: \"gui.PIVOT_SE\" };",
691
+ "gui\u0000CONSTANT\u0000gui.PIVOT_SW\u0000": "const PIVOT_SW: number & { readonly __brand: \"gui.PIVOT_SW\" };",
692
+ "gui\u0000CONSTANT\u0000gui.PIVOT_W\u0000": "const PIVOT_W: number & { readonly __brand: \"gui.PIVOT_W\" };",
693
+ "gui\u0000CONSTANT\u0000gui.PLAYBACK_LOOP_BACKWARD\u0000": "const PLAYBACK_LOOP_BACKWARD: number & { readonly __brand: \"gui.PLAYBACK_LOOP_BACKWARD\" };",
694
+ "gui\u0000CONSTANT\u0000gui.PLAYBACK_LOOP_FORWARD\u0000": "const PLAYBACK_LOOP_FORWARD: number & { readonly __brand: \"gui.PLAYBACK_LOOP_FORWARD\" };",
695
+ "gui\u0000CONSTANT\u0000gui.PLAYBACK_LOOP_PINGPONG\u0000": "const PLAYBACK_LOOP_PINGPONG: number & { readonly __brand: \"gui.PLAYBACK_LOOP_PINGPONG\" };",
696
+ "gui\u0000CONSTANT\u0000gui.PLAYBACK_ONCE_BACKWARD\u0000": "const PLAYBACK_ONCE_BACKWARD: number & { readonly __brand: \"gui.PLAYBACK_ONCE_BACKWARD\" };",
697
+ "gui\u0000CONSTANT\u0000gui.PLAYBACK_ONCE_FORWARD\u0000": "const PLAYBACK_ONCE_FORWARD: number & { readonly __brand: \"gui.PLAYBACK_ONCE_FORWARD\" };",
698
+ "gui\u0000CONSTANT\u0000gui.PLAYBACK_ONCE_PINGPONG\u0000": "const PLAYBACK_ONCE_PINGPONG: number & { readonly __brand: \"gui.PLAYBACK_ONCE_PINGPONG\" };",
699
+ "gui\u0000CONSTANT\u0000gui.PROP_COLOR\u0000": "const PROP_COLOR: number & { readonly __brand: \"gui.PROP_COLOR\" };",
700
+ "gui\u0000CONSTANT\u0000gui.PROP_EULER\u0000": "const PROP_EULER: number & { readonly __brand: \"gui.PROP_EULER\" };",
701
+ "gui\u0000CONSTANT\u0000gui.PROP_FILL_ANGLE\u0000": "const PROP_FILL_ANGLE: number & { readonly __brand: \"gui.PROP_FILL_ANGLE\" };",
702
+ "gui\u0000CONSTANT\u0000gui.PROP_INNER_RADIUS\u0000": "const PROP_INNER_RADIUS: number & { readonly __brand: \"gui.PROP_INNER_RADIUS\" };",
703
+ "gui\u0000CONSTANT\u0000gui.PROP_LEADING\u0000": "const PROP_LEADING: number & { readonly __brand: \"gui.PROP_LEADING\" };",
704
+ "gui\u0000CONSTANT\u0000gui.PROP_OUTLINE\u0000": "const PROP_OUTLINE: number & { readonly __brand: \"gui.PROP_OUTLINE\" };",
705
+ "gui\u0000CONSTANT\u0000gui.PROP_POSITION\u0000": "const PROP_POSITION: number & { readonly __brand: \"gui.PROP_POSITION\" };",
706
+ "gui\u0000CONSTANT\u0000gui.PROP_ROTATION\u0000": "const PROP_ROTATION: number & { readonly __brand: \"gui.PROP_ROTATION\" };",
707
+ "gui\u0000CONSTANT\u0000gui.PROP_SCALE\u0000": "const PROP_SCALE: number & { readonly __brand: \"gui.PROP_SCALE\" };",
708
+ "gui\u0000CONSTANT\u0000gui.PROP_SHADOW\u0000": "const PROP_SHADOW: number & { readonly __brand: \"gui.PROP_SHADOW\" };",
709
+ "gui\u0000CONSTANT\u0000gui.PROP_SIZE\u0000": "const PROP_SIZE: number & { readonly __brand: \"gui.PROP_SIZE\" };",
710
+ "gui\u0000CONSTANT\u0000gui.PROP_SLICE9\u0000": "const PROP_SLICE9: number & { readonly __brand: \"gui.PROP_SLICE9\" };",
711
+ "gui\u0000CONSTANT\u0000gui.PROP_TRACKING\u0000": "const PROP_TRACKING: number & { readonly __brand: \"gui.PROP_TRACKING\" };",
712
+ "gui\u0000CONSTANT\u0000gui.RESULT_DATA_ERROR\u0000": "const RESULT_DATA_ERROR: number & { readonly __brand: \"gui.RESULT_DATA_ERROR\" };",
713
+ "gui\u0000CONSTANT\u0000gui.RESULT_OUT_OF_RESOURCES\u0000": "const RESULT_OUT_OF_RESOURCES: number & { readonly __brand: \"gui.RESULT_OUT_OF_RESOURCES\" };",
714
+ "gui\u0000CONSTANT\u0000gui.RESULT_TEXTURE_ALREADY_EXISTS\u0000": "const RESULT_TEXTURE_ALREADY_EXISTS: number & { readonly __brand: \"gui.RESULT_TEXTURE_ALREADY_EXISTS\" };",
715
+ "gui\u0000CONSTANT\u0000gui.SAFE_AREA_BOTH\u0000": "const SAFE_AREA_BOTH: number & { readonly __brand: \"gui.SAFE_AREA_BOTH\" };",
716
+ "gui\u0000CONSTANT\u0000gui.SAFE_AREA_LONG\u0000": "const SAFE_AREA_LONG: number & { readonly __brand: \"gui.SAFE_AREA_LONG\" };",
717
+ "gui\u0000CONSTANT\u0000gui.SAFE_AREA_NONE\u0000": "const SAFE_AREA_NONE: number & { readonly __brand: \"gui.SAFE_AREA_NONE\" };",
718
+ "gui\u0000CONSTANT\u0000gui.SAFE_AREA_SHORT\u0000": "const SAFE_AREA_SHORT: number & { readonly __brand: \"gui.SAFE_AREA_SHORT\" };",
719
+ "gui\u0000CONSTANT\u0000gui.SIZE_MODE_AUTO\u0000": "const SIZE_MODE_AUTO: number & { readonly __brand: \"gui.SIZE_MODE_AUTO\" };",
720
+ "gui\u0000CONSTANT\u0000gui.SIZE_MODE_MANUAL\u0000": "const SIZE_MODE_MANUAL: number & { readonly __brand: \"gui.SIZE_MODE_MANUAL\" };",
721
+ "gui\u0000CONSTANT\u0000gui.TYPE_BOX\u0000": "const TYPE_BOX: number & { readonly __brand: \"gui.TYPE_BOX\" };",
722
+ "gui\u0000CONSTANT\u0000gui.TYPE_CUSTOM\u0000": "const TYPE_CUSTOM: number & { readonly __brand: \"gui.TYPE_CUSTOM\" };",
723
+ "gui\u0000CONSTANT\u0000gui.TYPE_PARTICLEFX\u0000": "const TYPE_PARTICLEFX: number & { readonly __brand: \"gui.TYPE_PARTICLEFX\" };",
724
+ "gui\u0000CONSTANT\u0000gui.TYPE_PIE\u0000": "const TYPE_PIE: number & { readonly __brand: \"gui.TYPE_PIE\" };",
725
+ "gui\u0000CONSTANT\u0000gui.TYPE_TEXT\u0000": "const TYPE_TEXT: number & { readonly __brand: \"gui.TYPE_TEXT\" };",
726
+ "gui\u0000FUNCTION\u0000final\u0000[{\"types\":[\"userdata\"],\"isOptional\":false}]->[]": "function final(self: Opaque<\"userdata\">): void;",
727
+ "gui\u0000FUNCTION\u0000gui.animate\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\",\"string\"],\"isOptional\":false},{\"types\":[\"number\",\"quaternion\",\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"constant\",\"vector\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true},{\"types\":[\"function(self, node)\"],\"isOptional\":true},{\"types\":[\"constant\"],\"isOptional\":true}]->[]": "function animate(node: Opaque<\"node\">, property: string | Opaque<\"constant\">, to: number | Vector3 | Vector4 | Quaternion, easing: Opaque<\"constant\"> | Vector, duration: number, delay?: number, complete_function?: (self: unknown, node: unknown) => void, playback?: Opaque<\"constant\">): void;",
728
+ "gui\u0000FUNCTION\u0000gui.cancel_animations\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\",\"nil\",\"string\"],\"isOptional\":true}]->[]": "function cancel_animations(node: Opaque<\"node\">, property?: string | Opaque<\"constant\">): void;",
729
+ "gui\u0000FUNCTION\u0000gui.cancel_flipbook\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[]": "function cancel_flipbook(node: Opaque<\"node\">): void;",
730
+ "gui\u0000FUNCTION\u0000gui.clone\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"node\"],\"isOptional\":false}]": "function clone(node: Opaque<\"node\">): Opaque<\"node\">;",
731
+ "gui\u0000FUNCTION\u0000gui.clone_tree\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function clone_tree(node: Opaque<\"node\">): LuaMap<Hash, Opaque<\"node\">>;",
732
+ "gui\u0000FUNCTION\u0000gui.delete_node\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[]": "function delete_node(node: Opaque<\"node\">): void;",
733
+ "gui\u0000FUNCTION\u0000gui.delete_texture\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function delete_texture(texture: string | Hash): void;",
734
+ "gui\u0000FUNCTION\u0000gui.get\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\",\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function get(node: Opaque<\"node\">, property: string | Hash | Opaque<\"constant\">, options?: { index?: number }): unknown;",
735
+ "gui\u0000FUNCTION\u0000gui.get_adjust_mode\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_adjust_mode(node: Opaque<\"node\">): Opaque<\"constant\">;",
736
+ "gui\u0000FUNCTION\u0000gui.get_alpha\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_alpha(node: Opaque<\"node\">): number;",
737
+ "gui\u0000FUNCTION\u0000gui.get_blend_mode\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_blend_mode(node: Opaque<\"node\">): Opaque<\"constant\">;",
738
+ "gui\u0000FUNCTION\u0000gui.get_clipping_inverted\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_clipping_inverted(node: Opaque<\"node\">): boolean;",
739
+ "gui\u0000FUNCTION\u0000gui.get_clipping_mode\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_clipping_mode(node: Opaque<\"node\">): Opaque<\"constant\">;",
740
+ "gui\u0000FUNCTION\u0000gui.get_clipping_visible\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_clipping_visible(node: Opaque<\"node\">): boolean;",
741
+ "gui\u0000FUNCTION\u0000gui.get_color\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector4\"],\"isOptional\":false}]": "function get_color(node: Opaque<\"node\">): Vector4;",
742
+ "gui\u0000FUNCTION\u0000gui.get_euler\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_euler(node: Opaque<\"node\">): Vector3;",
743
+ "gui\u0000FUNCTION\u0000gui.get_fill_angle\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_fill_angle(node: Opaque<\"node\">): number;",
744
+ "gui\u0000FUNCTION\u0000gui.get_flipbook\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_flipbook(node: Opaque<\"node\">): Hash;",
745
+ "gui\u0000FUNCTION\u0000gui.get_flipbook_cursor\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_flipbook_cursor(node: Opaque<\"node\">): number;",
746
+ "gui\u0000FUNCTION\u0000gui.get_flipbook_playback_rate\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_flipbook_playback_rate(node: Opaque<\"node\">): number;",
747
+ "gui\u0000FUNCTION\u0000gui.get_font\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_font(node: Opaque<\"node\">): Hash;",
748
+ "gui\u0000FUNCTION\u0000gui.get_font_resource\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_font_resource(font_name: Hash | string): Hash;",
749
+ "gui\u0000FUNCTION\u0000gui.get_height\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_height(): number;",
750
+ "gui\u0000FUNCTION\u0000gui.get_id\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_id(node: Opaque<\"node\">): Hash;",
751
+ "gui\u0000FUNCTION\u0000gui.get_index\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_index(node: Opaque<\"node\">): number;",
752
+ "gui\u0000FUNCTION\u0000gui.get_inherit_alpha\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_inherit_alpha(node: Opaque<\"node\">): boolean;",
753
+ "gui\u0000FUNCTION\u0000gui.get_inner_radius\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_inner_radius(node: Opaque<\"node\">): number;",
754
+ "gui\u0000FUNCTION\u0000gui.get_layer\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_layer(node: Opaque<\"node\">): Hash;",
755
+ "gui\u0000FUNCTION\u0000gui.get_layout\u0000[]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_layout(): Hash;",
756
+ "gui\u0000FUNCTION\u0000gui.get_layouts\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_layouts(): LuaMap<Hash, Vector3>;",
757
+ "gui\u0000FUNCTION\u0000gui.get_leading\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_leading(node: Opaque<\"node\">): number;",
758
+ "gui\u0000FUNCTION\u0000gui.get_line_break\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_line_break(node: Opaque<\"node\">): boolean;",
759
+ "gui\u0000FUNCTION\u0000gui.get_material\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_material(node: Opaque<\"node\">): Hash;",
760
+ "gui\u0000FUNCTION\u0000gui.get_node\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"node\"],\"isOptional\":false}]": "function get_node(id: string | Hash): Opaque<\"node\">;",
761
+ "gui\u0000FUNCTION\u0000gui.get_outer_bounds\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_outer_bounds(node: Opaque<\"node\">): Opaque<\"constant\">;",
762
+ "gui\u0000FUNCTION\u0000gui.get_outline\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector4\"],\"isOptional\":false}]": "function get_outline(node: Opaque<\"node\">): Vector4;",
763
+ "gui\u0000FUNCTION\u0000gui.get_parent\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"node\"],\"isOptional\":false}]": "function get_parent(node: Opaque<\"node\">): Opaque<\"node\"> | unknown;",
764
+ "gui\u0000FUNCTION\u0000gui.get_particlefx\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_particlefx(node: Opaque<\"node\">): Hash;",
765
+ "gui\u0000FUNCTION\u0000gui.get_perimeter_vertices\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_perimeter_vertices(node: Opaque<\"node\">): number;",
766
+ "gui\u0000FUNCTION\u0000gui.get_pivot\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_pivot(node: Opaque<\"node\">): Opaque<\"constant\">;",
767
+ "gui\u0000FUNCTION\u0000gui.get_position\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_position(node: Opaque<\"node\">): Vector3;",
768
+ "gui\u0000FUNCTION\u0000gui.get_rotation\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function get_rotation(node: Opaque<\"node\">): Quaternion;",
769
+ "gui\u0000FUNCTION\u0000gui.get_scale\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_scale(node: Opaque<\"node\">): Vector3;",
770
+ "gui\u0000FUNCTION\u0000gui.get_screen_position\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_screen_position(node: Opaque<\"node\">): Vector3;",
771
+ "gui\u0000FUNCTION\u0000gui.get_shadow\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector4\"],\"isOptional\":false}]": "function get_shadow(node: Opaque<\"node\">): Vector4;",
772
+ "gui\u0000FUNCTION\u0000gui.get_size\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_size(node: Opaque<\"node\">): Vector3;",
773
+ "gui\u0000FUNCTION\u0000gui.get_size_mode\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_size_mode(node: Opaque<\"node\">): Opaque<\"constant\">;",
774
+ "gui\u0000FUNCTION\u0000gui.get_slice9\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector4\"],\"isOptional\":false}]": "function get_slice9(node: Opaque<\"node\">): Vector4;",
775
+ "gui\u0000FUNCTION\u0000gui.get_text\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_text(node: Opaque<\"node\">): string;",
776
+ "gui\u0000FUNCTION\u0000gui.get_texture\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_texture(node: Opaque<\"node\">): Hash;",
777
+ "gui\u0000FUNCTION\u0000gui.get_tracking\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_tracking(node: Opaque<\"node\">): number;",
778
+ "gui\u0000FUNCTION\u0000gui.get_tree\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_tree(node: Opaque<\"node\">): LuaMap<Hash, Opaque<\"node\">>;",
779
+ "gui\u0000FUNCTION\u0000gui.get_type\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false},{\"types\":[\"nil\",\"number\"],\"isOptional\":false}]": "function get_type(node: Opaque<\"node\">): LuaMultiReturn<[Opaque<\"constant\">, number | unknown]>;",
780
+ "gui\u0000FUNCTION\u0000gui.get_visible\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_visible(node: Opaque<\"node\">): boolean;",
781
+ "gui\u0000FUNCTION\u0000gui.get_width\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_width(): number;",
782
+ "gui\u0000FUNCTION\u0000gui.get_xanchor\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_xanchor(node: Opaque<\"node\">): Opaque<\"constant\">;",
783
+ "gui\u0000FUNCTION\u0000gui.get_yanchor\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_yanchor(node: Opaque<\"node\">): Opaque<\"constant\">;",
784
+ "gui\u0000FUNCTION\u0000gui.hide_keyboard\u0000[]->[]": "function hide_keyboard(): void;",
785
+ "gui\u0000FUNCTION\u0000gui.is_enabled\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":true}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_enabled(node: Opaque<\"node\">, recursive?: boolean): boolean;",
786
+ "gui\u0000FUNCTION\u0000gui.move_above\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"nil\",\"node\"],\"isOptional\":false}]->[]": "function move_above(node: Opaque<\"node\">, reference?: Opaque<\"node\">): void;",
787
+ "gui\u0000FUNCTION\u0000gui.move_below\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"nil\",\"node\"],\"isOptional\":false}]->[]": "function move_below(node: Opaque<\"node\">, reference?: Opaque<\"node\">): void;",
788
+ "gui\u0000FUNCTION\u0000gui.new_box_node\u0000[{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"node\"],\"isOptional\":false}]": "function new_box_node(pos: Vector3 | Vector4, size: Vector3): Opaque<\"node\">;",
789
+ "gui\u0000FUNCTION\u0000gui.new_particlefx_node\u0000[{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"node\"],\"isOptional\":false}]": "function new_particlefx_node(pos: Vector3 | Vector4, particlefx: Hash | string): Opaque<\"node\">;",
790
+ "gui\u0000FUNCTION\u0000gui.new_pie_node\u0000[{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"node\"],\"isOptional\":false}]": "function new_pie_node(pos: Vector3 | Vector4, size: Vector3): Opaque<\"node\">;",
791
+ "gui\u0000FUNCTION\u0000gui.new_text_node\u0000[{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"node\"],\"isOptional\":false}]": "function new_text_node(pos: Vector3 | Vector4, text: string): Opaque<\"node\">;",
792
+ "gui\u0000FUNCTION\u0000gui.new_texture\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"constant\",\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]": "function new_texture(texture_id: string | Hash, width: number, height: number, type: string | Opaque<\"constant\">, buffer: string, flip: boolean): LuaMultiReturn<[boolean, number]>;",
793
+ "gui\u0000FUNCTION\u0000gui.pick_node\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function pick_node(node: Opaque<\"node\">, x: number, y: number): boolean;",
794
+ "gui\u0000FUNCTION\u0000gui.play_flipbook\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"function(self, node)\"],\"isOptional\":true},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function play_flipbook(node: Opaque<\"node\">, animation: string | Hash, complete_function?: (self: unknown, node: unknown) => void, play_properties?: { offset?: number; playback_rate?: number }): void;",
795
+ "gui\u0000FUNCTION\u0000gui.play_particlefx\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"function(self, node, emitter, state)\"],\"isOptional\":true}]->[]": "function play_particlefx(node: Opaque<\"node\">, emitter_state_function?: (self: unknown, node: unknown, emitter: unknown, state: unknown) => void): void;",
796
+ "gui\u0000FUNCTION\u0000gui.reset_keyboard\u0000[]->[]": "function reset_keyboard(): void;",
797
+ "gui\u0000FUNCTION\u0000gui.reset_material\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[]": "function reset_material(node: Opaque<\"node\">): void;",
798
+ "gui\u0000FUNCTION\u0000gui.reset_nodes\u0000[]->[]": "function reset_nodes(): void;",
799
+ "gui\u0000FUNCTION\u0000gui.screen_to_local\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function screen_to_local(node: Opaque<\"node\">, screen_position: Vector3): Vector3;",
800
+ "gui\u0000FUNCTION\u0000gui.set\u0000[{\"types\":[\"node\",\"url\"],\"isOptional\":false},{\"types\":[\"constant\",\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\",\"quaternion\",\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function set(node: Opaque<\"node\"> | Url, property: string | Hash | Opaque<\"constant\">, value: number | Vector4 | Vector3 | Quaternion, options?: { index?: number; key?: Hash }): void;",
801
+ "gui\u0000FUNCTION\u0000gui.set_adjust_mode\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_adjust_mode(node: Opaque<\"node\">, adjust_mode: Opaque<\"constant\">): void;",
802
+ "gui\u0000FUNCTION\u0000gui.set_alpha\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_alpha(node: Opaque<\"node\">, alpha: number): void;",
803
+ "gui\u0000FUNCTION\u0000gui.set_blend_mode\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_blend_mode(node: Opaque<\"node\">, blend_mode: Opaque<\"constant\">): void;",
804
+ "gui\u0000FUNCTION\u0000gui.set_clipping_inverted\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_clipping_inverted(node: Opaque<\"node\">, inverted: boolean): void;",
805
+ "gui\u0000FUNCTION\u0000gui.set_clipping_mode\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_clipping_mode(node: Opaque<\"node\">, clipping_mode: Opaque<\"constant\">): void;",
806
+ "gui\u0000FUNCTION\u0000gui.set_clipping_visible\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_clipping_visible(node: Opaque<\"node\">, visible: boolean): void;",
807
+ "gui\u0000FUNCTION\u0000gui.set_color\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[]": "function set_color(node: Opaque<\"node\">, color: Vector3 | Vector4): void;",
808
+ "gui\u0000FUNCTION\u0000gui.set_enabled\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_enabled(node: Opaque<\"node\">, enabled: boolean): void;",
809
+ "gui\u0000FUNCTION\u0000gui.set_euler\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[]": "function set_euler(node: Opaque<\"node\">, rotation: Vector3 | Vector4): void;",
810
+ "gui\u0000FUNCTION\u0000gui.set_fill_angle\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_fill_angle(node: Opaque<\"node\">, angle: number): void;",
811
+ "gui\u0000FUNCTION\u0000gui.set_flipbook_cursor\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_flipbook_cursor(node: Opaque<\"node\">, cursor: number): void;",
812
+ "gui\u0000FUNCTION\u0000gui.set_flipbook_playback_rate\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_flipbook_playback_rate(node: Opaque<\"node\">, playback_rate: number): void;",
813
+ "gui\u0000FUNCTION\u0000gui.set_font\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function set_font(node: Opaque<\"node\">, font: string | Hash): void;",
814
+ "gui\u0000FUNCTION\u0000gui.set_id\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function set_id(node: Opaque<\"node\">, id: string | Hash): void;",
815
+ "gui\u0000FUNCTION\u0000gui.set_inherit_alpha\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_inherit_alpha(node: Opaque<\"node\">, inherit_alpha: boolean): void;",
816
+ "gui\u0000FUNCTION\u0000gui.set_inner_radius\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_inner_radius(node: Opaque<\"node\">, radius: number): void;",
817
+ "gui\u0000FUNCTION\u0000gui.set_layer\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function set_layer(node: Opaque<\"node\">, layer: string | Hash): void;",
818
+ "gui\u0000FUNCTION\u0000gui.set_layout\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function set_layout(layout: string | Hash): boolean;",
819
+ "gui\u0000FUNCTION\u0000gui.set_leading\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_leading(node: Opaque<\"node\">, leading: number): void;",
820
+ "gui\u0000FUNCTION\u0000gui.set_line_break\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_line_break(node: Opaque<\"node\">, line_break: boolean): void;",
821
+ "gui\u0000FUNCTION\u0000gui.set_material\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function set_material(node: Opaque<\"node\">, material: string | Hash): void;",
822
+ "gui\u0000FUNCTION\u0000gui.set_outer_bounds\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_outer_bounds(node: Opaque<\"node\">, bounds_mode: Opaque<\"constant\">): void;",
823
+ "gui\u0000FUNCTION\u0000gui.set_outline\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[]": "function set_outline(node: Opaque<\"node\">, color: Vector3 | Vector4): void;",
824
+ "gui\u0000FUNCTION\u0000gui.set_parent\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"node\"],\"isOptional\":true},{\"types\":[\"boolean\"],\"isOptional\":true}]->[]": "function set_parent(node: Opaque<\"node\">, parent?: Opaque<\"node\">, keep_scene_transform?: boolean): void;",
825
+ "gui\u0000FUNCTION\u0000gui.set_particlefx\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function set_particlefx(node: Opaque<\"node\">, particlefx: Hash | string): void;",
826
+ "gui\u0000FUNCTION\u0000gui.set_perimeter_vertices\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_perimeter_vertices(node: Opaque<\"node\">, vertices: number): void;",
827
+ "gui\u0000FUNCTION\u0000gui.set_pivot\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_pivot(node: Opaque<\"node\">, pivot: Opaque<\"constant\">): void;",
828
+ "gui\u0000FUNCTION\u0000gui.set_position\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[]": "function set_position(node: Opaque<\"node\">, position: Vector3 | Vector4): void;",
829
+ "gui\u0000FUNCTION\u0000gui.set_render_order\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_render_order(order: number): void;",
830
+ "gui\u0000FUNCTION\u0000gui.set_rotation\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"quaternion\",\"vector4\"],\"isOptional\":false}]->[]": "function set_rotation(node: Opaque<\"node\">, rotation: Quaternion | Vector4): void;",
831
+ "gui\u0000FUNCTION\u0000gui.set_safe_area_mode\u0000[{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_safe_area_mode(mode: Opaque<\"constant\">): void;",
832
+ "gui\u0000FUNCTION\u0000gui.set_scale\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[]": "function set_scale(node: Opaque<\"node\">, scale: Vector3 | Vector4): void;",
833
+ "gui\u0000FUNCTION\u0000gui.set_screen_position\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[]": "function set_screen_position(node: Opaque<\"node\">, screen_position: Vector3): void;",
834
+ "gui\u0000FUNCTION\u0000gui.set_shadow\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[]": "function set_shadow(node: Opaque<\"node\">, color: Vector3 | Vector4): void;",
835
+ "gui\u0000FUNCTION\u0000gui.set_size\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[]": "function set_size(node: Opaque<\"node\">, size: Vector3 | Vector4): void;",
836
+ "gui\u0000FUNCTION\u0000gui.set_size_mode\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_size_mode(node: Opaque<\"node\">, size_mode: Opaque<\"constant\">): void;",
837
+ "gui\u0000FUNCTION\u0000gui.set_slice9\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector4\"],\"isOptional\":false}]->[]": "function set_slice9(node: Opaque<\"node\">, values: Vector4): void;",
838
+ "gui\u0000FUNCTION\u0000gui.set_text\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\",\"string\"],\"isOptional\":false}]->[]": "function set_text(node: Opaque<\"node\">, text: string | number): void;",
839
+ "gui\u0000FUNCTION\u0000gui.set_texture\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function set_texture(node: Opaque<\"node\">, texture: string | Hash): void;",
840
+ "gui\u0000FUNCTION\u0000gui.set_texture_data\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"constant\",\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function set_texture_data(texture: string | Hash, width: number, height: number, type: string | Opaque<\"constant\">, buffer: string, flip: boolean): boolean;",
841
+ "gui\u0000FUNCTION\u0000gui.set_tracking\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_tracking(node: Opaque<\"node\">, tracking: number): void;",
842
+ "gui\u0000FUNCTION\u0000gui.set_visible\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_visible(node: Opaque<\"node\">, visible: boolean): void;",
843
+ "gui\u0000FUNCTION\u0000gui.set_xanchor\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_xanchor(node: Opaque<\"node\">, anchor: Opaque<\"constant\">): void;",
844
+ "gui\u0000FUNCTION\u0000gui.set_yanchor\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_yanchor(node: Opaque<\"node\">, anchor: Opaque<\"constant\">): void;",
845
+ "gui\u0000FUNCTION\u0000gui.show_keyboard\u0000[{\"types\":[\"constant\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function show_keyboard(type: Opaque<\"constant\">, autoclose: boolean): void;",
846
+ "gui\u0000FUNCTION\u0000gui.stop_particlefx\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function stop_particlefx(node: Opaque<\"node\">, options?: { clear?: boolean }): void;",
847
+ "gui\u0000FUNCTION\u0000init\u0000[{\"types\":[\"userdata\"],\"isOptional\":false}]->[]": "function init(self: Opaque<\"userdata\">): void;",
848
+ "gui\u0000FUNCTION\u0000on_input\u0000[{\"types\":[\"userdata\"],\"isOptional\":false},{\"types\":[\"hash\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"boolean\",\"nil\"],\"isOptional\":false}]": "function on_input(self: Opaque<\"userdata\">, action_id: Hash, action: { value?: number; pressed?: boolean; released?: boolean; repeated?: boolean; x?: number; y?: number; screen_x?: number; screen_y?: number; dx?: number; dy?: number; screen_dx?: number; screen_dy?: number; gamepad?: number; gamepad_axis?: Vector3; touch?: { id?: number; pressed?: boolean; released?: boolean; tap_count?: number; x?: number; y?: number; dx?: number; dy?: number; acc_x?: number; acc_y?: number; acc_z?: number }[]; text?: string }): boolean | unknown;",
849
+ "gui\u0000FUNCTION\u0000on_message\u0000[{\"types\":[\"userdata\"],\"isOptional\":false},{\"types\":[\"hash\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function on_message(self: Opaque<\"userdata\">, message_id: Hash, message: Record<string | number, unknown>): void;",
850
+ "gui\u0000FUNCTION\u0000on_reload\u0000[{\"types\":[\"userdata\"],\"isOptional\":false}]->[]": "function on_reload(self: Opaque<\"userdata\">): void;",
851
+ "gui\u0000FUNCTION\u0000update\u0000[{\"types\":[\"userdata\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function update(self: Opaque<\"userdata\">, dt: number): void;",
852
+ "gui\u0000PROPERTY\u0000fonts\u0000": "fonts: Hash;",
853
+ "gui\u0000PROPERTY\u0000material\u0000": "material: Hash;",
854
+ "gui\u0000PROPERTY\u0000materials\u0000": "materials: Hash;",
855
+ "gui\u0000PROPERTY\u0000textures\u0000": "textures: Hash;",
856
+ "html5\u0000FUNCTION\u0000html5.run\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function run(code: string): string;",
857
+ "html5\u0000FUNCTION\u0000html5.set_interaction_listener\u0000[{\"types\":[\"function(self)\",\"nil\"],\"isOptional\":false}]->[]": "function set_interaction_listener(callback?: (self: unknown) => void): void;",
858
+ "http\u0000FUNCTION\u0000http.request\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"function(self, id, response)\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true},{\"types\":[\"string\"],\"isOptional\":true},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function request(url: string, method: string, callback: (self: unknown, id: unknown, response: unknown) => void, headers?: LuaMap<string, string>, post_data?: string, options?: { timeout?: number; path?: string; ignore_cache?: boolean; chunked_transfer?: boolean; report_progress?: boolean }): void;",
859
+ "iac\u0000FUNCTION\u0000iac.set_listener\u0000[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_listener(payload: Record<string | number, unknown>, type: number): void;",
860
+ "iap\u0000FUNCTION\u0000iap.acknowledge\u0000[{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function acknowledge(transaction: { ident?: string; state?: number; trans_ident?: string; date?: string; original_trans?: string; receipt?: string; signature?: string; user_id?: string }): void;",
861
+ "iap\u0000FUNCTION\u0000iap.buy\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function buy(id: string, options: { request_id?: string; token?: string }): void;",
862
+ "iap\u0000FUNCTION\u0000iap.finish\u0000[{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function finish(transaction: { ident?: string; state?: number; trans_ident?: string; date?: string; original_trans?: string; receipt?: string; signature?: string; user_id?: string }): void;",
863
+ "iap\u0000FUNCTION\u0000iap.get_provider_id\u0000[]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_provider_id(): Opaque<\"constant\">;",
864
+ "iap\u0000FUNCTION\u0000iap.list\u0000[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"function\"],\"isOptional\":false}]->[]": "function list(ids: string[], callback: (...args: unknown[]) => unknown): void;",
865
+ "iap\u0000FUNCTION\u0000iap.restore\u0000[]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function restore(): boolean;",
866
+ "iap\u0000FUNCTION\u0000iap.set_listener\u0000[{\"types\":[\"function\"],\"isOptional\":false}]->[]": "function set_listener(listener: (...args: unknown[]) => unknown): void;",
867
+ "image\u0000CONSTANT\u0000image.TYPE_LUMINANCE\u0000": "const TYPE_LUMINANCE: number & { readonly __brand: \"image.TYPE_LUMINANCE\" };",
868
+ "image\u0000CONSTANT\u0000image.TYPE_LUMINANCE_ALPHA\u0000": "const TYPE_LUMINANCE_ALPHA: number & { readonly __brand: \"image.TYPE_LUMINANCE_ALPHA\" };",
869
+ "image\u0000CONSTANT\u0000image.TYPE_RGB\u0000": "const TYPE_RGB: number & { readonly __brand: \"image.TYPE_RGB\" };",
870
+ "image\u0000CONSTANT\u0000image.TYPE_RGBA\u0000": "const TYPE_RGBA: number & { readonly __brand: \"image.TYPE_RGBA\" };",
871
+ "image\u0000FUNCTION\u0000image.get_astc_header\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"table\"],\"isOptional\":false}]": "function get_astc_header(buffer: string): { width: number; height: number; depth: number; block_size_x: number; block_size_y: number; block_size_z: number } | unknown;",
872
+ "image\u0000FUNCTION\u0000image.load\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"table\"],\"isOptional\":false}]": "function load(buffer: string, options?: { premultiply_alpha?: boolean; flip_vertically?: boolean }): { width: number; height: number; type: Opaque<\"constant\">; buffer: string } | unknown;",
873
+ "image\u0000FUNCTION\u0000image.load_buffer\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"table\"],\"isOptional\":false}]": "function load_buffer(buffer: string, options?: { premultiply_alpha?: boolean; flip_vertically?: boolean }): { width: number; height: number; type: Opaque<\"constant\">; buffer: Opaque<\"buffer\"> } | unknown;",
874
+ "json\u0000FUNCTION\u0000json.decode\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function decode(json: string, options?: { decode_null_as_userdata?: boolean }): Record<string | number, unknown>;",
875
+ "json\u0000FUNCTION\u0000json.encode\u0000[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function encode(tbl: Record<string | number, unknown>, options?: { encode_empty_table_as_object?: string }): string;",
876
+ "json\u0000VARIABLE\u0000json.null\u0000": "const _null: unknown;",
877
+ "label\u0000FUNCTION\u0000label.get_text\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_text(url: string | Hash | Url): string;",
878
+ "label\u0000FUNCTION\u0000label.set_text\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"number\",\"string\"],\"isOptional\":false}]->[]": "function set_text(url: string | Hash | Url, text: string | number): void;",
879
+ "label\u0000PROPERTY\u0000color\u0000": "color: Vector4;",
880
+ "label\u0000PROPERTY\u0000font\u0000": "font: Hash;",
881
+ "label\u0000PROPERTY\u0000leading\u0000": "leading: number;",
882
+ "label\u0000PROPERTY\u0000line_break\u0000": "line_break: boolean;",
883
+ "label\u0000PROPERTY\u0000material\u0000": "material: Hash;",
884
+ "label\u0000PROPERTY\u0000outline\u0000": "outline: Vector4;",
885
+ "label\u0000PROPERTY\u0000scale\u0000": "scale: number | Vector3;",
886
+ "label\u0000PROPERTY\u0000shadow\u0000": "shadow: Vector4;",
887
+ "label\u0000PROPERTY\u0000size\u0000": "size: Vector3;",
888
+ "label\u0000PROPERTY\u0000tracking\u0000": "tracking: number;",
889
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_BUNDLED_RESOURCE_MISMATCH\u0000": "const LIVEUPDATE_BUNDLED_RESOURCE_MISMATCH: number & { readonly __brand: \"liveupdate.LIVEUPDATE_BUNDLED_RESOURCE_MISMATCH\" };",
890
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_ENGINE_VERSION_MISMATCH\u0000": "const LIVEUPDATE_ENGINE_VERSION_MISMATCH: number & { readonly __brand: \"liveupdate.LIVEUPDATE_ENGINE_VERSION_MISMATCH\" };",
891
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_FORMAT_ERROR\u0000": "const LIVEUPDATE_FORMAT_ERROR: number & { readonly __brand: \"liveupdate.LIVEUPDATE_FORMAT_ERROR\" };",
892
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_INVAL\u0000": "const LIVEUPDATE_INVAL: number & { readonly __brand: \"liveupdate.LIVEUPDATE_INVAL\" };",
893
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_INVALID_HEADER\u0000": "const LIVEUPDATE_INVALID_HEADER: number & { readonly __brand: \"liveupdate.LIVEUPDATE_INVALID_HEADER\" };",
894
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_INVALID_RESOURCE\u0000": "const LIVEUPDATE_INVALID_RESOURCE: number & { readonly __brand: \"liveupdate.LIVEUPDATE_INVALID_RESOURCE\" };",
895
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_IO_ERROR\u0000": "const LIVEUPDATE_IO_ERROR: number & { readonly __brand: \"liveupdate.LIVEUPDATE_IO_ERROR\" };",
896
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_MEM_ERROR\u0000": "const LIVEUPDATE_MEM_ERROR: number & { readonly __brand: \"liveupdate.LIVEUPDATE_MEM_ERROR\" };",
897
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_OK\u0000": "const LIVEUPDATE_OK: number & { readonly __brand: \"liveupdate.LIVEUPDATE_OK\" };",
898
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_SCHEME_MISMATCH\u0000": "const LIVEUPDATE_SCHEME_MISMATCH: number & { readonly __brand: \"liveupdate.LIVEUPDATE_SCHEME_MISMATCH\" };",
899
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_SIGNATURE_MISMATCH\u0000": "const LIVEUPDATE_SIGNATURE_MISMATCH: number & { readonly __brand: \"liveupdate.LIVEUPDATE_SIGNATURE_MISMATCH\" };",
900
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_UNKNOWN\u0000": "const LIVEUPDATE_UNKNOWN: number & { readonly __brand: \"liveupdate.LIVEUPDATE_UNKNOWN\" };",
901
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_VERSION_MISMATCH\u0000": "const LIVEUPDATE_VERSION_MISMATCH: number & { readonly __brand: \"liveupdate.LIVEUPDATE_VERSION_MISMATCH\" };",
902
+ "liveupdate\u0000FUNCTION\u0000liveupdate.add_mount\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"function(self, name, uri, result)\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function add_mount(name: string | Hash, uri: string, priority: number, callback: (self: unknown, name: unknown, uri: unknown, result: unknown) => void): number;",
903
+ "liveupdate\u0000FUNCTION\u0000liveupdate.get_mounts\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_mounts(): { name: string; uri: string; priority: number }[];",
904
+ "liveupdate\u0000FUNCTION\u0000liveupdate.is_built_with_excluded_files\u0000[]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_built_with_excluded_files(): boolean;",
905
+ "liveupdate\u0000FUNCTION\u0000liveupdate.remove_mount\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function remove_mount(name: string | Hash): number;",
906
+ "material\u0000FUNCTION\u0000material.get_constants\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_constants(path: Hash | string): { name: Hash; type: number; value: Vector4 | Matrix4 }[];",
907
+ "material\u0000FUNCTION\u0000material.get_samplers\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_samplers(path: Hash | string): { name: Hash; u_wrap: number; v_wrap: number; min_filter: number; mag_filter: number; max_anisotropy: number }[];",
908
+ "material\u0000FUNCTION\u0000material.get_textures\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_textures(path: Hash | string): { path: Hash; handle: Hash; width: number; height: number; depth: number; mipmaps: number; type: number; flags: number }[];",
909
+ "material\u0000FUNCTION\u0000material.get_vertex_attributes\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_vertex_attributes(path: Hash | string): { name: Hash; value: Vector4 | Vector3 | Matrix4 | number | number[]; normalize: boolean; data_type: number; coordinate_space: number; semantic_type: number }[];",
910
+ "material\u0000FUNCTION\u0000material.set_constants\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function set_constants(path: Hash | string, constants: Record<string, { type?: number; value?: Vector4 | Vector3 | Matrix4 | number | (Vector4 | Matrix4)[] }>): void;",
911
+ "material\u0000FUNCTION\u0000material.set_samplers\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function set_samplers(path: Hash | string, samplers: Record<string, { u_wrap?: number; v_wrap?: number; min_filter?: number; mag_filter?: number; max_anisotropy?: number }>): void;",
912
+ "material\u0000FUNCTION\u0000material.set_textures\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function set_textures(path: Hash | string, textures: LuaMap<string, Hash>): void;",
913
+ "material\u0000FUNCTION\u0000material.set_vertex_attributes\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function set_vertex_attributes(path: Hash | string, attributes: Record<string, { value?: Vector4 | Vector3 | Matrix4 | number | number[]; normalize?: boolean; data_type?: number; coordinate_space?: number; semantic_type?: number }>): void;",
914
+ "model\u0000FUNCTION\u0000model.cancel\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[]": "function cancel(url: string | Hash | Url): void;",
915
+ "model\u0000FUNCTION\u0000model.get_aabb\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_aabb(url: string | Hash | Url): { min: Vector3; max: Vector3 };",
916
+ "model\u0000FUNCTION\u0000model.get_blend_weights\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_blend_weights(url: string | Hash | Url): number[];",
917
+ "model\u0000FUNCTION\u0000model.get_go\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_go(url: string | Hash | Url, bone_id: string | Hash): Hash;",
918
+ "model\u0000FUNCTION\u0000model.get_mesh_aabb\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_mesh_aabb(url: string | Hash | Url): LuaMap<Hash, { min: Vector3; max: Vector3 }>;",
919
+ "model\u0000FUNCTION\u0000model.get_mesh_enabled\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_mesh_enabled(url: string | Hash | Url, mesh_id: string | Hash | Url): boolean;",
920
+ "model\u0000FUNCTION\u0000model.play_anim\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true},{\"types\":[\"function(self, message_id, message, sender)\"],\"isOptional\":true}]->[]": "function play_anim(url: string | Hash | Url, anim_id: string | Hash, playback: Opaque<\"constant\">, play_properties?: { blend_duration?: number; offset?: number; playback_rate?: number }, complete_function?: (self: unknown, message_id: unknown, message: unknown, sender: unknown) => void): void;",
921
+ "model\u0000FUNCTION\u0000model.reset_constant\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function reset_constant(url: string | Hash | Url, constant: string | Hash): void;",
922
+ "model\u0000FUNCTION\u0000model.set_blend_weights\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"nil\",\"table\"],\"isOptional\":false}]->[]": "function set_blend_weights(url: string | Hash | Url, weights?: number[]): void;",
923
+ "model\u0000FUNCTION\u0000model.set_mesh_enabled\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_mesh_enabled(url: string | Hash | Url, mesh_id: string | Hash | Url, enabled: boolean): void;",
924
+ "model\u0000PROPERTY\u0000animation\u0000": "animation: Hash;",
925
+ "model\u0000PROPERTY\u0000cursor\u0000": "cursor: number;",
926
+ "model\u0000PROPERTY\u0000playback_rate\u0000": "playback_rate: number;",
927
+ "model\u0000PROPERTY\u0000textureN\u0000": "textureN: Hash;",
928
+ "particlefx\u0000CONSTANT\u0000particlefx.EMITTER_STATE_POSTSPAWN\u0000": "const EMITTER_STATE_POSTSPAWN: number & { readonly __brand: \"particlefx.EMITTER_STATE_POSTSPAWN\" };",
929
+ "particlefx\u0000CONSTANT\u0000particlefx.EMITTER_STATE_PRESPAWN\u0000": "const EMITTER_STATE_PRESPAWN: number & { readonly __brand: \"particlefx.EMITTER_STATE_PRESPAWN\" };",
930
+ "particlefx\u0000CONSTANT\u0000particlefx.EMITTER_STATE_SLEEPING\u0000": "const EMITTER_STATE_SLEEPING: number & { readonly __brand: \"particlefx.EMITTER_STATE_SLEEPING\" };",
931
+ "particlefx\u0000CONSTANT\u0000particlefx.EMITTER_STATE_SPAWNING\u0000": "const EMITTER_STATE_SPAWNING: number & { readonly __brand: \"particlefx.EMITTER_STATE_SPAWNING\" };",
932
+ "particlefx\u0000FUNCTION\u0000particlefx.play\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"function(self, id, emitter, state)\"],\"isOptional\":true}]->[]": "function play(url: string | Hash | Url, emitter_state_function?: (self: unknown, id: unknown, emitter: unknown, state: unknown) => void): void;",
933
+ "particlefx\u0000FUNCTION\u0000particlefx.reset_constant\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function reset_constant(url: string | Hash | Url, emitter: string | Hash, constant: string | Hash): void;",
934
+ "particlefx\u0000FUNCTION\u0000particlefx.set_constant\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"vector4\"],\"isOptional\":false}]->[]": "function set_constant(url: string | Hash | Url, emitter: string | Hash, constant: string | Hash, value: Vector4): void;",
935
+ "particlefx\u0000FUNCTION\u0000particlefx.stop\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function stop(url: string | Hash | Url, options?: { clear?: boolean }): void;",
936
+ "particlefx\u0000PROPERTY\u0000animation\u0000": "animation: Hash;",
937
+ "particlefx\u0000PROPERTY\u0000image\u0000": "image: Hash;",
938
+ "particlefx\u0000PROPERTY\u0000material\u0000": "material: Hash;",
939
+ "physics\u0000CONSTANT\u0000physics.JOINT_TYPE_FIXED\u0000": "const JOINT_TYPE_FIXED: number & { readonly __brand: \"physics.JOINT_TYPE_FIXED\" };",
940
+ "physics\u0000CONSTANT\u0000physics.JOINT_TYPE_HINGE\u0000": "const JOINT_TYPE_HINGE: number & { readonly __brand: \"physics.JOINT_TYPE_HINGE\" };",
941
+ "physics\u0000CONSTANT\u0000physics.JOINT_TYPE_SLIDER\u0000": "const JOINT_TYPE_SLIDER: number & { readonly __brand: \"physics.JOINT_TYPE_SLIDER\" };",
942
+ "physics\u0000CONSTANT\u0000physics.JOINT_TYPE_SPRING\u0000": "const JOINT_TYPE_SPRING: number & { readonly __brand: \"physics.JOINT_TYPE_SPRING\" };",
943
+ "physics\u0000CONSTANT\u0000physics.JOINT_TYPE_WELD\u0000": "const JOINT_TYPE_WELD: number & { readonly __brand: \"physics.JOINT_TYPE_WELD\" };",
944
+ "physics\u0000CONSTANT\u0000physics.JOINT_TYPE_WHEEL\u0000": "const JOINT_TYPE_WHEEL: number & { readonly __brand: \"physics.JOINT_TYPE_WHEEL\" };",
945
+ "physics\u0000CONSTANT\u0000physics.SHAPE_TYPE_BOX\u0000": "const SHAPE_TYPE_BOX: number & { readonly __brand: \"physics.SHAPE_TYPE_BOX\" };",
946
+ "physics\u0000CONSTANT\u0000physics.SHAPE_TYPE_CAPSULE\u0000": "const SHAPE_TYPE_CAPSULE: number & { readonly __brand: \"physics.SHAPE_TYPE_CAPSULE\" };",
947
+ "physics\u0000CONSTANT\u0000physics.SHAPE_TYPE_HULL\u0000": "const SHAPE_TYPE_HULL: number & { readonly __brand: \"physics.SHAPE_TYPE_HULL\" };",
948
+ "physics\u0000CONSTANT\u0000physics.SHAPE_TYPE_SPHERE\u0000": "const SHAPE_TYPE_SPHERE: number & { readonly __brand: \"physics.SHAPE_TYPE_SPHERE\" };",
949
+ "physics\u0000FUNCTION\u0000physics.create_joint\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function create_joint(joint_type: number, collisionobject_a: string | Hash | Url, joint_id: string | Hash, position_a: Vector3, collisionobject_b: string | Hash | Url, position_b: Vector3, properties?: { collide_connected?: boolean }): void;",
950
+ "physics\u0000FUNCTION\u0000physics.destroy_joint\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function destroy_joint(collisionobject: string | Hash | Url, joint_id: string | Hash): void;",
951
+ "physics\u0000FUNCTION\u0000physics.get_gravity\u0000[]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_gravity(): Vector3;",
952
+ "physics\u0000FUNCTION\u0000physics.get_group\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_group(url: string | Hash | Url): Hash;",
953
+ "physics\u0000FUNCTION\u0000physics.get_joint_properties\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_joint_properties(collisionobject: string | Hash | Url, joint_id: string | Hash): { collide_connected: boolean };",
954
+ "physics\u0000FUNCTION\u0000physics.get_joint_reaction_force\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_joint_reaction_force(collisionobject: string | Hash | Url, joint_id: string | Hash): Vector3;",
955
+ "physics\u0000FUNCTION\u0000physics.get_joint_reaction_torque\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_joint_reaction_torque(collisionobject: string | Hash | Url, joint_id: string | Hash): number;",
956
+ "physics\u0000FUNCTION\u0000physics.get_maskbit\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_maskbit(url: string | Hash | Url, group: string): boolean;",
957
+ "physics\u0000FUNCTION\u0000physics.get_shape\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_shape(url: string | Hash | Url, shape: string | Hash): { type: number; diameter: number; dimensions: Vector3; diameter: number; height: number };",
958
+ "physics\u0000FUNCTION\u0000physics.raycast\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"table\"],\"isOptional\":false}]": "function raycast(from: Vector3, to: Vector3, groups: Hash[], options?: { all?: boolean }): { fraction: number; position: Vector3; normal: Vector3; id: Hash; group: Hash; request_id: number }[] | unknown;",
959
+ "physics\u0000FUNCTION\u0000physics.raycast_async\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true}]->[]": "function raycast_async(from: Vector3, to: Vector3, groups: Hash[], request_id?: number): void;",
960
+ "physics\u0000FUNCTION\u0000physics.set_event_listener\u0000[{\"types\":[\"function(self, events)\",\"nil\"],\"isOptional\":false}]->[]": "function set_event_listener(callback?: (self: unknown, events: unknown) => void): void;",
961
+ "physics\u0000FUNCTION\u0000physics.set_gravity\u0000[{\"types\":[\"vector3\"],\"isOptional\":false}]->[]": "function set_gravity(gravity: Vector3): void;",
962
+ "physics\u0000FUNCTION\u0000physics.set_group\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function set_group(url: string | Hash | Url, group: string): void;",
963
+ "physics\u0000FUNCTION\u0000physics.set_hflip\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_hflip(url: string | Hash | Url, flip: boolean): void;",
964
+ "physics\u0000FUNCTION\u0000physics.set_joint_properties\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function set_joint_properties(collisionobject: string | Hash | Url, joint_id: string | Hash, properties: { collide_connected?: boolean }): void;",
965
+ "physics\u0000FUNCTION\u0000physics.set_maskbit\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_maskbit(url: string | Hash | Url, group: string, maskbit: boolean): void;",
966
+ "physics\u0000FUNCTION\u0000physics.set_shape\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function set_shape(url: string | Hash | Url, shape: string | Hash, table: { type?: number; diameter?: number; dimensions?: Vector3; diameter?: number; height?: number }): void;",
967
+ "physics\u0000FUNCTION\u0000physics.set_vflip\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_vflip(url: string | Hash | Url, flip: boolean): void;",
968
+ "physics\u0000FUNCTION\u0000physics.update_mass\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function update_mass(collisionobject: string | Hash | Url, mass: number): void;",
969
+ "physics\u0000FUNCTION\u0000physics.wakeup\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[]": "function wakeup(url: string | Hash | Url): void;",
970
+ "physics\u0000PROPERTY\u0000angular_damping\u0000": "angular_damping: number;",
971
+ "physics\u0000PROPERTY\u0000angular_velocity\u0000": "angular_velocity: Vector3;",
972
+ "physics\u0000PROPERTY\u0000linear_damping\u0000": "linear_damping: number;",
973
+ "physics\u0000PROPERTY\u0000linear_velocity\u0000": "linear_velocity: Vector3;",
974
+ "physics\u0000PROPERTY\u0000mass\u0000": "mass: number;",
975
+ "profiler\u0000CONSTANT\u0000profiler.MODE_PAUSE\u0000": "const MODE_PAUSE: number & { readonly __brand: \"profiler.MODE_PAUSE\" };",
976
+ "profiler\u0000CONSTANT\u0000profiler.MODE_RECORD\u0000": "const MODE_RECORD: number & { readonly __brand: \"profiler.MODE_RECORD\" };",
977
+ "profiler\u0000CONSTANT\u0000profiler.MODE_RUN\u0000": "const MODE_RUN: number & { readonly __brand: \"profiler.MODE_RUN\" };",
978
+ "profiler\u0000CONSTANT\u0000profiler.MODE_SHOW_PEAK_FRAME\u0000": "const MODE_SHOW_PEAK_FRAME: number & { readonly __brand: \"profiler.MODE_SHOW_PEAK_FRAME\" };",
979
+ "profiler\u0000CONSTANT\u0000profiler.VIEW_MODE_FULL\u0000": "const VIEW_MODE_FULL: number & { readonly __brand: \"profiler.VIEW_MODE_FULL\" };",
980
+ "profiler\u0000CONSTANT\u0000profiler.VIEW_MODE_MINIMIZED\u0000": "const VIEW_MODE_MINIMIZED: number & { readonly __brand: \"profiler.VIEW_MODE_MINIMIZED\" };",
981
+ "profiler\u0000FUNCTION\u0000profiler.dump_frame\u0000[]->[]": "function dump_frame(): void;",
982
+ "profiler\u0000FUNCTION\u0000profiler.enable\u0000[{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable(enabled: boolean): void;",
983
+ "profiler\u0000FUNCTION\u0000profiler.enable_ui\u0000[{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable_ui(enabled: boolean): void;",
984
+ "profiler\u0000FUNCTION\u0000profiler.get_cpu_usage\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_cpu_usage(): number;",
985
+ "profiler\u0000FUNCTION\u0000profiler.get_memory_usage\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_memory_usage(): number;",
986
+ "profiler\u0000FUNCTION\u0000profiler.log_text\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function log_text(text: string): void;",
987
+ "profiler\u0000FUNCTION\u0000profiler.recorded_frame_count\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function recorded_frame_count(): number;",
988
+ "profiler\u0000FUNCTION\u0000profiler.scope_begin\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function scope_begin(name: string): void;",
989
+ "profiler\u0000FUNCTION\u0000profiler.scope_end\u0000[]->[]": "function scope_end(): void;",
990
+ "profiler\u0000FUNCTION\u0000profiler.set_ui_mode\u0000[{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_ui_mode(mode: Opaque<\"constant\">): void;",
991
+ "profiler\u0000FUNCTION\u0000profiler.set_ui_view_mode\u0000[{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_ui_view_mode(mode: Opaque<\"constant\">): void;",
992
+ "profiler\u0000FUNCTION\u0000profiler.set_ui_vsync_wait_visible\u0000[{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_ui_vsync_wait_visible(visible: boolean): void;",
993
+ "profiler\u0000FUNCTION\u0000profiler.view_recorded_frame\u0000[{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function view_recorded_frame(frame_index: { distance?: number; frame?: number }): void;",
994
+ "push\u0000FUNCTION\u0000push.cancel\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function cancel(id: number): void;",
995
+ "push\u0000FUNCTION\u0000push.cancel_all_issued\u0000[]->[]": "function cancel_all_issued(): void;",
996
+ "push\u0000FUNCTION\u0000push.get_all_scheduled\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_all_scheduled(): Record<string | number, unknown>;",
997
+ "push\u0000FUNCTION\u0000push.get_scheduled\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_scheduled(id: number): Record<string | number, unknown>;",
998
+ "push\u0000FUNCTION\u0000push.register\u0000[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"function\"],\"isOptional\":false}]->[]": "function register(notifications: number[], callback: (...args: unknown[]) => unknown): void;",
999
+ "push\u0000FUNCTION\u0000push.schedule\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false}]": "function schedule(time: number, title: string, alert: string, payload: string, notification_settings: { action?: string; badge_count?: number; priority?: number }): LuaMultiReturn<[number, string]>;",
1000
+ "push\u0000FUNCTION\u0000push.set_badge_count\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_badge_count(count: number): void;",
1001
+ "push\u0000FUNCTION\u0000push.set_listener\u0000[{\"types\":[\"function\"],\"isOptional\":false}]->[]": "function set_listener(listener: (...args: unknown[]) => unknown): void;",
1002
+ "render\u0000CONSTANT\u0000render.FRUSTUM_PLANES_ALL\u0000": "const FRUSTUM_PLANES_ALL: number & { readonly __brand: \"render.FRUSTUM_PLANES_ALL\" };",
1003
+ "render\u0000CONSTANT\u0000render.FRUSTUM_PLANES_SIDES\u0000": "const FRUSTUM_PLANES_SIDES: number & { readonly __brand: \"render.FRUSTUM_PLANES_SIDES\" };",
1004
+ "render\u0000CONSTANT\u0000render.RENDER_TARGET_DEFAULT\u0000": "const RENDER_TARGET_DEFAULT: number & { readonly __brand: \"render.RENDER_TARGET_DEFAULT\" };",
1005
+ "render\u0000CONSTANT\u0000render.SORT_BACK_TO_FRONT\u0000": "const SORT_BACK_TO_FRONT: number & { readonly __brand: \"render.SORT_BACK_TO_FRONT\" };",
1006
+ "render\u0000CONSTANT\u0000render.SORT_FRONT_TO_BACK\u0000": "const SORT_FRONT_TO_BACK: number & { readonly __brand: \"render.SORT_FRONT_TO_BACK\" };",
1007
+ "render\u0000CONSTANT\u0000render.SORT_NONE\u0000": "const SORT_NONE: number & { readonly __brand: \"render.SORT_NONE\" };",
1008
+ "render\u0000FUNCTION\u0000render.clear\u0000[{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function clear(buffers: LuaMap<number, number | Vector4>): void;",
1009
+ "render\u0000FUNCTION\u0000render.constant_buffer\u0000[]->[{\"types\":[\"constant_buffer\"],\"isOptional\":false}]": "function constant_buffer(): Opaque<\"constant_buffer\">;",
1010
+ "render\u0000FUNCTION\u0000render.delete_render_target\u0000[{\"types\":[\"render_target\"],\"isOptional\":false}]->[]": "function delete_render_target(render_target: Opaque<\"render_target\">): void;",
1011
+ "render\u0000FUNCTION\u0000render.disable_material\u0000[]->[]": "function disable_material(): void;",
1012
+ "render\u0000FUNCTION\u0000render.disable_state\u0000[{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function disable_state(state: Opaque<\"constant\">): void;",
1013
+ "render\u0000FUNCTION\u0000render.disable_texture\u0000[{\"types\":[\"hash\",\"string\",\"texture\"],\"isOptional\":false}]->[]": "function disable_texture(binding: Opaque<\"texture\"> | string | Hash): void;",
1014
+ "render\u0000FUNCTION\u0000render.dispatch_compute\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function dispatch_compute(x: number, y: number, z: number, options?: { constants?: Opaque<\"constant_buffer\"> }): void;",
1015
+ "render\u0000FUNCTION\u0000render.draw\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function draw(predicate: number, options?: { frustum?: Matrix4; frustum_planes?: number; constants?: Opaque<\"constant_buffer\">; sort_order?: number }): void;",
1016
+ "render\u0000FUNCTION\u0000render.draw_debug3d\u0000[{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function draw_debug3d(options?: { frustum?: Matrix4; frustum_planes?: number }): void;",
1017
+ "render\u0000FUNCTION\u0000render.enable_material\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function enable_material(material_id: string | Hash): void;",
1018
+ "render\u0000FUNCTION\u0000render.enable_state\u0000[{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function enable_state(state: Opaque<\"constant\">): void;",
1019
+ "render\u0000FUNCTION\u0000render.enable_texture\u0000[{\"types\":[\"hash\",\"number\",\"string\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"texture\"],\"isOptional\":false},{\"types\":[\"graphics.BUFFER_TYPE_COLOR0_BIT\",\"graphics.BUFFER_TYPE_COLOR1_BIT\",\"graphics.BUFFER_TYPE_COLOR2_BIT\",\"graphics.BUFFER_TYPE_COLOR3_BIT\",\"graphics.BUFFER_TYPE_DEPTH_BIT\",\"graphics.BUFFER_TYPE_STENCIL_BIT\"],\"isOptional\":true}]->[]": "function enable_texture(binding: number | string | Hash, handle_or_name: Opaque<\"texture\"> | string | Hash, buffer_type?: number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR0_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR1_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR2_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR3_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_DEPTH_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_STENCIL_BIT\" }): void;",
1020
+ "render\u0000FUNCTION\u0000render.get_height\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_height(): number;",
1021
+ "render\u0000FUNCTION\u0000render.get_render_target_height\u0000[{\"types\":[\"render_target\"],\"isOptional\":false},{\"types\":[\"graphics.BUFFER_TYPE_COLOR0_BIT\",\"graphics.BUFFER_TYPE_COLOR1_BIT\",\"graphics.BUFFER_TYPE_COLOR2_BIT\",\"graphics.BUFFER_TYPE_COLOR3_BIT\",\"graphics.BUFFER_TYPE_DEPTH_BIT\",\"graphics.BUFFER_TYPE_STENCIL_BIT\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_render_target_height(render_target: Opaque<\"render_target\">, buffer_type: number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR0_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR1_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR2_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR3_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_DEPTH_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_STENCIL_BIT\" }): number;",
1022
+ "render\u0000FUNCTION\u0000render.get_render_target_width\u0000[{\"types\":[\"render_target\"],\"isOptional\":false},{\"types\":[\"graphics.BUFFER_TYPE_COLOR0_BIT\",\"graphics.BUFFER_TYPE_COLOR1_BIT\",\"graphics.BUFFER_TYPE_COLOR2_BIT\",\"graphics.BUFFER_TYPE_COLOR3_BIT\",\"graphics.BUFFER_TYPE_DEPTH_BIT\",\"graphics.BUFFER_TYPE_STENCIL_BIT\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_render_target_width(render_target: Opaque<\"render_target\">, buffer_type: number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR0_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR1_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR2_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR3_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_DEPTH_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_STENCIL_BIT\" }): number;",
1023
+ "render\u0000FUNCTION\u0000render.get_width\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_width(): number;",
1024
+ "render\u0000FUNCTION\u0000render.get_window_height\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_window_height(): number;",
1025
+ "render\u0000FUNCTION\u0000render.get_window_width\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_window_width(): number;",
1026
+ "render\u0000FUNCTION\u0000render.predicate\u0000[{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function predicate(tags: (string | Hash)[]): number;",
1027
+ "render\u0000FUNCTION\u0000render.render_target\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"render_target\"],\"isOptional\":false}]": "function render_target(name: string, parameters: Record<string | number, unknown>): Opaque<\"render_target\">;",
1028
+ "render\u0000FUNCTION\u0000render.set_blend_equation_separate\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_blend_equation_separate(equation_color: number, equation_alpha: number): void;",
1029
+ "render\u0000FUNCTION\u0000render.set_blend_func\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_blend_func(source_factor: number, destination_factor: number): void;",
1030
+ "render\u0000FUNCTION\u0000render.set_blend_func_separate\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_blend_func_separate(source_factor_color: number, destination_factor_color: number, source_factor_alpha: number, destination_factor_alpha: number): void;",
1031
+ "render\u0000FUNCTION\u0000render.set_camera\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function set_camera(camera?: Url | number, options?: { use_frustum?: boolean }): void;",
1032
+ "render\u0000FUNCTION\u0000render.set_color_mask\u0000[{\"types\":[\"boolean\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_color_mask(red: boolean, green: boolean, blue: boolean, alpha: boolean): void;",
1033
+ "render\u0000FUNCTION\u0000render.set_compute\u0000[{\"types\":[\"hash\",\"nil\",\"string\"],\"isOptional\":false}]->[]": "function set_compute(compute?: string | Hash): void;",
1034
+ "render\u0000FUNCTION\u0000render.set_cull_face\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_cull_face(face_type: number): void;",
1035
+ "render\u0000FUNCTION\u0000render.set_depth_func\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_depth_func(func: number): void;",
1036
+ "render\u0000FUNCTION\u0000render.set_depth_mask\u0000[{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_depth_mask(depth: boolean): void;",
1037
+ "render\u0000FUNCTION\u0000render.set_listener\u0000[{\"types\":[\"function(self, event_type)\",\"nil\"],\"isOptional\":false}]->[]": "function set_listener(callback?: (self: unknown, event_type: unknown) => void): void;",
1038
+ "render\u0000FUNCTION\u0000render.set_polygon_offset\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_polygon_offset(factor: number, units: number): void;",
1039
+ "render\u0000FUNCTION\u0000render.set_projection\u0000[{\"types\":[\"matrix4\"],\"isOptional\":false}]->[]": "function set_projection(matrix: Matrix4): void;",
1040
+ "render\u0000FUNCTION\u0000render.set_render_target\u0000[{\"types\":[\"render_target\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function set_render_target(render_target: Opaque<\"render_target\">, options?: { transient?: Record<string | number, unknown> }): void;",
1041
+ "render\u0000FUNCTION\u0000render.set_render_target_size\u0000[{\"types\":[\"render_target\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_render_target_size(render_target: Opaque<\"render_target\">, width: number, height: number): void;",
1042
+ "render\u0000FUNCTION\u0000render.set_stencil_func\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_stencil_func(func: number, ref: number, mask: number): void;",
1043
+ "render\u0000FUNCTION\u0000render.set_stencil_mask\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_stencil_mask(mask: number): void;",
1044
+ "render\u0000FUNCTION\u0000render.set_stencil_op\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_stencil_op(sfail: number, dpfail: number, dppass: number): void;",
1045
+ "render\u0000FUNCTION\u0000render.set_view\u0000[{\"types\":[\"matrix4\"],\"isOptional\":false}]->[]": "function set_view(matrix: Matrix4): void;",
1046
+ "render\u0000FUNCTION\u0000render.set_viewport\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_viewport(x: number, y: number, width: number, height: number): void;",
1047
+ "render\u0000TYPEDEF\u0000constant_buffer\u0000": "type constant_buffer = Opaque<\"constant_buffer\">;",
1048
+ "render\u0000TYPEDEF\u0000render_target\u0000": "type render_target = Opaque<\"render_target\">;",
1049
+ "render\u0000TYPEDEF\u0000texture\u0000": "type texture = Opaque<\"texture\">;",
1050
+ "resource\u0000FUNCTION\u0000resource.atlas\u0000[{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function atlas(path?: string): Hash;",
1051
+ "resource\u0000FUNCTION\u0000resource.buffer\u0000[{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function buffer(path?: string): Hash;",
1052
+ "resource\u0000FUNCTION\u0000resource.create_atlas\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function create_atlas(path: string, table: { texture?: string | Hash; animations?: { id?: string; width?: number; height?: number; frame_start?: number; frame_end?: number; playback?: Opaque<\"constant\">; fps?: number; flip_vertical?: boolean; flip_horizontal?: boolean }[]; geometries?: { id?: string; width?: number; height?: number; pivot_x?: number; pivot_y?: number; rotated?: boolean }[]; vertices?: number[]; uvs?: number[]; indices?: number[] }): Hash;",
1053
+ "resource\u0000FUNCTION\u0000resource.create_buffer\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function create_buffer(path: string, table?: { buffer?: Opaque<\"buffer\">; transfer_ownership?: boolean }): Hash;",
1054
+ "resource\u0000FUNCTION\u0000resource.create_sound_data\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function create_sound_data(path: string, options?: { data?: string; filesize?: number; partial?: boolean }): Hash;",
1055
+ "resource\u0000FUNCTION\u0000resource.create_texture\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"buffer\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function create_texture(path: string, table: { type?: number; width?: number; height?: number; depth?: number; format?: number; flags?: number; max_mipmaps?: number; compression_type?: number }, buffer: Opaque<\"buffer\">): Hash;",
1056
+ "resource\u0000FUNCTION\u0000resource.create_texture_async\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"buffer\"],\"isOptional\":false},{\"types\":[\"function\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]": "function create_texture_async(path: string | Hash, table: { type?: number; width?: number; height?: number; depth?: number; format?: number; flags?: number; max_mipmaps?: number; compression_type?: number }, buffer: Opaque<\"buffer\">, callback: (...args: unknown[]) => unknown): LuaMultiReturn<[Hash, number]>;",
1057
+ "resource\u0000FUNCTION\u0000resource.font\u0000[{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function font(path?: string): Hash;",
1058
+ "resource\u0000FUNCTION\u0000resource.get_atlas\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_atlas(path: Hash | string): { texture: string | Hash; animations: { id: string; width: number; height: number; frame_start: number; frame_end: number; playback: Opaque<\"constant\">; fps: number; flip_vertical: boolean; flip_horizontal: boolean }[]; geometries: { vertices: number[]; uvs: number[]; indices: number[] }[] };",
1059
+ "resource\u0000FUNCTION\u0000resource.get_buffer\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"buffer\"],\"isOptional\":false}]": "function get_buffer(path: Hash | string): Opaque<\"buffer\">;",
1060
+ "resource\u0000FUNCTION\u0000resource.get_render_target_info\u0000[{\"types\":[\"hash\",\"number\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_render_target_info(path: Hash | string | number): { handle: number; width: number; height: number; depth: number; mipmaps: number; type: number; buffer_type: number; texture: Hash };",
1061
+ "resource\u0000FUNCTION\u0000resource.get_text_metrics\u0000[{\"types\":[\"hash\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_text_metrics(url: Hash, text: string, options?: { width?: number; leading?: number; tracking?: number; line_break?: boolean }): { width: number; height: number; max_ascent: number; max_descent: number };",
1062
+ "resource\u0000FUNCTION\u0000resource.get_texture_info\u0000[{\"types\":[\"hash\",\"number\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_texture_info(path: Hash | string | number): { handle: number; width: number; height: number; depth: number; page_count: number; mipmaps: number; flags: number; type: number };",
1063
+ "resource\u0000FUNCTION\u0000resource.load\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"buffer\"],\"isOptional\":false}]": "function load(path: string): Opaque<\"buffer\">;",
1064
+ "resource\u0000FUNCTION\u0000resource.material\u0000[{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function material(path?: string): Hash;",
1065
+ "resource\u0000FUNCTION\u0000resource.release\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function release(path: Hash | string): void;",
1066
+ "resource\u0000FUNCTION\u0000resource.render_target\u0000[{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function render_target(path?: string): Hash;",
1067
+ "resource\u0000FUNCTION\u0000resource.set\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"buffer\"],\"isOptional\":false}]->[]": "function set(path: string | Hash, buffer: Opaque<\"buffer\">): void;",
1068
+ "resource\u0000FUNCTION\u0000resource.set_atlas\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function set_atlas(path: Hash | string, table: { texture?: string | Hash; animations?: { id?: string; width?: number; height?: number; frame_start?: number; frame_end?: number; playback?: Opaque<\"constant\">; fps?: number; flip_vertical?: boolean; flip_horizontal?: boolean }[]; geometries?: { vertices?: number[]; uvs?: number[]; indices?: number[] }[]; vertices?: number[]; uvs?: number[]; indices?: number[] }): void;",
1069
+ "resource\u0000FUNCTION\u0000resource.set_buffer\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"buffer\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function set_buffer(path: Hash | string, buffer: Opaque<\"buffer\">, table?: { transfer_ownership?: boolean }): void;",
1070
+ "resource\u0000FUNCTION\u0000resource.set_sound\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function set_sound(path: Hash | string, buffer: string): void;",
1071
+ "resource\u0000FUNCTION\u0000resource.set_texture\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"buffer\"],\"isOptional\":false}]->[]": "function set_texture(path: Hash | string, table: { type?: number; width?: number; height?: number; format?: number; x?: number; y?: number; z?: number; page?: number; mipmap?: number; compression_type?: number }, buffer: Opaque<\"buffer\">): void;",
1072
+ "resource\u0000FUNCTION\u0000resource.texture\u0000[{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function texture(path?: string): Hash;",
1073
+ "resource\u0000FUNCTION\u0000resource.tile_source\u0000[{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function tile_source(path?: string): Hash;",
1074
+ "socket\u0000CONSTANT\u0000socket._SETSIZE\u0000": "const _SETSIZE: number & { readonly __brand: \"socket._SETSIZE\" };",
1075
+ "socket\u0000CONSTANT\u0000socket._VERSION\u0000": "const _VERSION: number & { readonly __brand: \"socket._VERSION\" };",
1076
+ "socket\u0000FUNCTION\u0000client:close\u0000[]->[]": "close(): void;",
1077
+ "socket\u0000FUNCTION\u0000client:dirty\u0000[]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "dirty(): boolean;",
1078
+ "socket\u0000FUNCTION\u0000client:getfd\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "getfd(): number;",
1079
+ "socket\u0000FUNCTION\u0000client:getoption\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"any\",\"nil\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "getoption(option: string): LuaMultiReturn<[unknown, string | unknown]>;",
1080
+ "socket\u0000FUNCTION\u0000client:getpeername\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getpeername(): string;",
1081
+ "socket\u0000FUNCTION\u0000client:getsockname\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getsockname(): string;",
1082
+ "socket\u0000FUNCTION\u0000client:getstats\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getstats(): string;",
1083
+ "socket\u0000FUNCTION\u0000client:receive\u0000[{\"types\":[\"number\",\"string\"],\"isOptional\":true},{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "receive(pattern?: string | number, prefix?: string): LuaMultiReturn<[string | unknown, string | unknown, string | unknown]>;",
1084
+ "socket\u0000FUNCTION\u0000client:send\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true},{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"nil\",\"number\"],\"isOptional\":false}]": "send(data: string, i?: number, j?: number): LuaMultiReturn<[number | unknown, string | unknown, number | unknown]>;",
1085
+ "socket\u0000FUNCTION\u0000client:setfd\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "setfd(handle: number): void;",
1086
+ "socket\u0000FUNCTION\u0000client:setoption\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"any\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "setoption(option: string, value?: unknown): LuaMultiReturn<[number | unknown, string | unknown]>;",
1087
+ "socket\u0000FUNCTION\u0000client:setstats\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false}]": "setstats(received: number, sent: number, age: number): number | unknown;",
1088
+ "socket\u0000FUNCTION\u0000client:settimeout\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":true}]->[]": "settimeout(value: number, mode?: string): void;",
1089
+ "socket\u0000FUNCTION\u0000client:shutdown\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "shutdown(mode: string): number;",
1090
+ "socket\u0000FUNCTION\u0000connected:close\u0000[]->[]": "close(): void;",
1091
+ "socket\u0000FUNCTION\u0000connected:getoption\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"any\",\"nil\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "getoption(option: string): LuaMultiReturn<[unknown, string | unknown]>;",
1092
+ "socket\u0000FUNCTION\u0000connected:getpeername\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getpeername(): string;",
1093
+ "socket\u0000FUNCTION\u0000connected:getsockname\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getsockname(): string;",
1094
+ "socket\u0000FUNCTION\u0000connected:receive\u0000[{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "receive(size?: number): LuaMultiReturn<[string | unknown, string | unknown]>;",
1095
+ "socket\u0000FUNCTION\u0000connected:send\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "send(datagram: string): LuaMultiReturn<[number | unknown, string | unknown]>;",
1096
+ "socket\u0000FUNCTION\u0000connected:setoption\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"any\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "setoption(option: string, value?: unknown): LuaMultiReturn<[number | unknown, string | unknown]>;",
1097
+ "socket\u0000FUNCTION\u0000connected:setpeername\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "setpeername(arg0: string): LuaMultiReturn<[number | unknown, string | unknown]>;",
1098
+ "socket\u0000FUNCTION\u0000connected:settimeout\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "settimeout(value: number): void;",
1099
+ "socket\u0000FUNCTION\u0000master:bind\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "bind(address: string, port: number): LuaMultiReturn<[number | unknown, string | unknown]>;",
1100
+ "socket\u0000FUNCTION\u0000master:close\u0000[]->[]": "close(): void;",
1101
+ "socket\u0000FUNCTION\u0000master:connect\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "connect(address: string, port: number): LuaMultiReturn<[number | unknown, string | unknown]>;",
1102
+ "socket\u0000FUNCTION\u0000master:dirty\u0000[]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "dirty(): boolean;",
1103
+ "socket\u0000FUNCTION\u0000master:getfd\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "getfd(): number;",
1104
+ "socket\u0000FUNCTION\u0000master:getsockname\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getsockname(): string;",
1105
+ "socket\u0000FUNCTION\u0000master:getstats\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getstats(): string;",
1106
+ "socket\u0000FUNCTION\u0000master:listen\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "listen(backlog: number): LuaMultiReturn<[number | unknown, string | unknown]>;",
1107
+ "socket\u0000FUNCTION\u0000master:setfd\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "setfd(handle: number): void;",
1108
+ "socket\u0000FUNCTION\u0000master:setstats\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false}]": "setstats(received: number, sent: number, age: number): number | unknown;",
1109
+ "socket\u0000FUNCTION\u0000master:settimeout\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":true}]->[]": "settimeout(value: number, mode?: string): void;",
1110
+ "socket\u0000FUNCTION\u0000server:accept\u0000[]->[{\"types\":[\"client\",\"nil\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "accept(): LuaMultiReturn<[client | unknown, string | unknown]>;",
1111
+ "socket\u0000FUNCTION\u0000server:close\u0000[]->[]": "close(): void;",
1112
+ "socket\u0000FUNCTION\u0000server:dirty\u0000[]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "dirty(): boolean;",
1113
+ "socket\u0000FUNCTION\u0000server:getfd\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "getfd(): number;",
1114
+ "socket\u0000FUNCTION\u0000server:getoption\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"any\",\"nil\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "getoption(option: string): LuaMultiReturn<[unknown, string | unknown]>;",
1115
+ "socket\u0000FUNCTION\u0000server:getsockname\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getsockname(): string;",
1116
+ "socket\u0000FUNCTION\u0000server:getstats\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getstats(): string;",
1117
+ "socket\u0000FUNCTION\u0000server:setfd\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "setfd(handle: number): void;",
1118
+ "socket\u0000FUNCTION\u0000server:setoption\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"any\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "setoption(option: string, value?: unknown): LuaMultiReturn<[number | unknown, string | unknown]>;",
1119
+ "socket\u0000FUNCTION\u0000server:setstats\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false}]": "setstats(received: number, sent: number, age: number): number | unknown;",
1120
+ "socket\u0000FUNCTION\u0000server:settimeout\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":true}]->[]": "settimeout(value: number, mode?: string): void;",
1121
+ "socket\u0000FUNCTION\u0000socket.connect\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":true},{\"types\":[\"number\"],\"isOptional\":true},{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"client\",\"nil\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function connect(address: string, port: number, locaddr?: string, locport?: number, family?: string): LuaMultiReturn<[client | unknown, string | unknown]>;",
1122
+ "socket\u0000FUNCTION\u0000socket.dns.getaddrinfo\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"table\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function getaddrinfo(address: string): LuaMultiReturn<[Record<string | number, unknown> | unknown, string | unknown]>;",
1123
+ "socket\u0000FUNCTION\u0000socket.dns.gethostname\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function gethostname(): string;",
1124
+ "socket\u0000FUNCTION\u0000socket.dns.getnameinfo\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"table\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function getnameinfo(address: string): LuaMultiReturn<[Record<string | number, unknown> | unknown, string | unknown]>;",
1125
+ "socket\u0000FUNCTION\u0000socket.dns.tohostname\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"string\",\"table\"],\"isOptional\":false}]": "function tohostname(address: string): LuaMultiReturn<[string | unknown, Record<string | number, unknown> | string]>;",
1126
+ "socket\u0000FUNCTION\u0000socket.dns.toip\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"string\",\"table\"],\"isOptional\":false}]": "function toip(address: string): LuaMultiReturn<[string | unknown, Record<string | number, unknown> | string]>;",
1127
+ "socket\u0000FUNCTION\u0000socket.gettime\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function gettime(): number;",
1128
+ "socket\u0000FUNCTION\u0000socket.newtry\u0000[{\"types\":[\"function()\"],\"isOptional\":false}]->[{\"types\":[\"function\"],\"isOptional\":false}]": "function newtry(finalizer: () => void): (...args: unknown[]) => unknown;",
1129
+ "socket\u0000FUNCTION\u0000socket.protect\u0000[{\"types\":[\"function\"],\"isOptional\":false}]->[{\"types\":[\"function(function())\"],\"isOptional\":false}]": "function protect(func: (...args: unknown[]) => unknown): (arg0: unknown) => void;",
1130
+ "socket\u0000FUNCTION\u0000socket.select\u0000[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function select(recvt: (client | master | unconnected)[], sendt: (client | master | unconnected)[], timeout?: number): LuaMultiReturn<[(client | master | unconnected)[], (client | master | unconnected)[], string | unknown]>;",
1131
+ "socket\u0000FUNCTION\u0000socket.skip\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"any\"],\"isOptional\":true},{\"types\":[\"any\"],\"isOptional\":true},{\"types\":[\"any\"],\"isOptional\":true}]->[{\"types\":[\"any\",\"nil\"],\"isOptional\":false},{\"types\":[\"any\",\"nil\"],\"isOptional\":false},{\"types\":[\"any\",\"nil\"],\"isOptional\":false}]": "function skip(d: number, ret1?: unknown, ret2?: unknown, retN?: unknown): LuaMultiReturn<[unknown, unknown, unknown]>;",
1132
+ "socket\u0000FUNCTION\u0000socket.sleep\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function sleep(time: number): void;",
1133
+ "socket\u0000FUNCTION\u0000socket.tcp\u0000[]->[{\"types\":[\"master\",\"nil\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function tcp(): LuaMultiReturn<[master | unknown, string | unknown]>;",
1134
+ "socket\u0000FUNCTION\u0000socket.tcp6\u0000[]->[{\"types\":[\"master\",\"nil\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function tcp6(): LuaMultiReturn<[master | unknown, string | unknown]>;",
1135
+ "socket\u0000FUNCTION\u0000socket.udp\u0000[]->[{\"types\":[\"nil\",\"unconnected\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function udp(): LuaMultiReturn<[unconnected | unknown, string | unknown]>;",
1136
+ "socket\u0000FUNCTION\u0000socket.udp6\u0000[]->[{\"types\":[\"nil\",\"unconnected\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function udp6(): LuaMultiReturn<[unconnected | unknown, string | unknown]>;",
1137
+ "socket\u0000FUNCTION\u0000unconnected:close\u0000[]->[]": "close(): void;",
1138
+ "socket\u0000FUNCTION\u0000unconnected:getoption\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"any\",\"nil\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "getoption(option: string): LuaMultiReturn<[unknown, string | unknown]>;",
1139
+ "socket\u0000FUNCTION\u0000unconnected:getsockname\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getsockname(): string;",
1140
+ "socket\u0000FUNCTION\u0000unconnected:receive\u0000[{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "receive(size?: number): LuaMultiReturn<[string | unknown, string | unknown]>;",
1141
+ "socket\u0000FUNCTION\u0000unconnected:receivefrom\u0000[{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"nil\",\"number\"],\"isOptional\":false}]": "receivefrom(size?: number): LuaMultiReturn<[string | unknown, string, number | unknown]>;",
1142
+ "socket\u0000FUNCTION\u0000unconnected:sendto\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "sendto(datagram: string, ip: string, port: number): LuaMultiReturn<[number | unknown, string | unknown]>;",
1143
+ "socket\u0000FUNCTION\u0000unconnected:setoption\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"any\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "setoption(option: string, value?: unknown): LuaMultiReturn<[number | unknown, string | unknown]>;",
1144
+ "socket\u0000FUNCTION\u0000unconnected:setpeername\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "setpeername(address: string, port: number): LuaMultiReturn<[number | unknown, string | unknown]>;",
1145
+ "socket\u0000FUNCTION\u0000unconnected:setsockname\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "setsockname(address: string, port: number): LuaMultiReturn<[number | unknown, string | unknown]>;",
1146
+ "socket\u0000FUNCTION\u0000unconnected:settimeout\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "settimeout(value: number): void;",
1147
+ "sound\u0000FUNCTION\u0000sound.get_group_gain\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_group_gain(group: string | Hash): number;",
1148
+ "sound\u0000FUNCTION\u0000sound.get_group_name\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_group_name(group: string | Hash): string;",
1149
+ "sound\u0000FUNCTION\u0000sound.get_groups\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_groups(): Hash[];",
1150
+ "sound\u0000FUNCTION\u0000sound.get_peak\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]": "function get_peak(group: string | Hash, window: number): LuaMultiReturn<[number, number]>;",
1151
+ "sound\u0000FUNCTION\u0000sound.get_rms\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]": "function get_rms(group: string | Hash, window: number): LuaMultiReturn<[number, number]>;",
1152
+ "sound\u0000FUNCTION\u0000sound.is_music_playing\u0000[]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_music_playing(): boolean;",
1153
+ "sound\u0000FUNCTION\u0000sound.is_phone_call_active\u0000[]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_phone_call_active(): boolean;",
1154
+ "sound\u0000FUNCTION\u0000sound.pause\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function pause(url: string | Hash | Url, pause: boolean): void;",
1155
+ "sound\u0000FUNCTION\u0000sound.play\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true},{\"types\":[\"function(self, message_id, message, sender)\"],\"isOptional\":true}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function play(url: string | Hash | Url, play_properties?: { delay?: number; gain?: number; pan?: number; speed?: number; start_time?: number; start_frame?: number }, complete_function?: (self: unknown, message_id: unknown, message: unknown, sender: unknown) => void): number;",
1156
+ "sound\u0000FUNCTION\u0000sound.set_gain\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true}]->[]": "function set_gain(url: string | Hash | Url, gain?: number): void;",
1157
+ "sound\u0000FUNCTION\u0000sound.set_group_gain\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_group_gain(group: string | Hash, gain: number): void;",
1158
+ "sound\u0000FUNCTION\u0000sound.set_pan\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true}]->[]": "function set_pan(url: string | Hash | Url, pan?: number): void;",
1159
+ "sound\u0000FUNCTION\u0000sound.stop\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function stop(url: string | Hash | Url, stop_properties?: { play_id?: number }): void;",
1160
+ "sound\u0000PROPERTY\u0000gain\u0000": "gain: number;",
1161
+ "sound\u0000PROPERTY\u0000pan\u0000": "pan: number;",
1162
+ "sound\u0000PROPERTY\u0000sound\u0000": "sound: Hash;",
1163
+ "sound\u0000PROPERTY\u0000speed\u0000": "speed: number;",
1164
+ "sprite\u0000FUNCTION\u0000sprite.play_flipbook\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"function(self, message_id, message, sender)\"],\"isOptional\":true},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function play_flipbook(url: string | Hash | Url, id: string | Hash, complete_function?: (self: unknown, message_id: unknown, message: unknown, sender: unknown) => void, play_properties?: { offset?: number; playback_rate?: number }): void;",
1165
+ "sprite\u0000FUNCTION\u0000sprite.reset_constant\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function reset_constant(url: string | Hash | Url, constant: string | Hash): void;",
1166
+ "sprite\u0000FUNCTION\u0000sprite.set_hflip\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_hflip(url: string | Hash | Url, flip: boolean): void;",
1167
+ "sprite\u0000FUNCTION\u0000sprite.set_vflip\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_vflip(url: string | Hash | Url, flip: boolean): void;",
1168
+ "sprite\u0000PROPERTY\u0000animation\u0000": "animation: Hash;",
1169
+ "sprite\u0000PROPERTY\u0000cursor\u0000": "cursor: number;",
1170
+ "sprite\u0000PROPERTY\u0000frame_count\u0000": "frame_count: Hash;",
1171
+ "sprite\u0000PROPERTY\u0000image\u0000": "image: Hash;",
1172
+ "sprite\u0000PROPERTY\u0000material\u0000": "material: Hash;",
1173
+ "sprite\u0000PROPERTY\u0000playback_rate\u0000": "playback_rate: number;",
1174
+ "sprite\u0000PROPERTY\u0000scale\u0000": "scale: Vector3;",
1175
+ "sprite\u0000PROPERTY\u0000size\u0000": "size: Vector3;",
1176
+ "sprite\u0000PROPERTY\u0000slice\u0000": "slice: Vector4;",
1177
+ "sys\u0000CONSTANT\u0000sys.NETWORK_CONNECTED\u0000": "const NETWORK_CONNECTED: number & { readonly __brand: \"sys.NETWORK_CONNECTED\" };",
1178
+ "sys\u0000CONSTANT\u0000sys.NETWORK_CONNECTED_CELLULAR\u0000": "const NETWORK_CONNECTED_CELLULAR: number & { readonly __brand: \"sys.NETWORK_CONNECTED_CELLULAR\" };",
1179
+ "sys\u0000CONSTANT\u0000sys.NETWORK_DISCONNECTED\u0000": "const NETWORK_DISCONNECTED: number & { readonly __brand: \"sys.NETWORK_DISCONNECTED\" };",
1180
+ "sys\u0000CONSTANT\u0000sys.REQUEST_STATUS_ERROR_IO_ERROR\u0000": "const REQUEST_STATUS_ERROR_IO_ERROR: number & { readonly __brand: \"sys.REQUEST_STATUS_ERROR_IO_ERROR\" };",
1181
+ "sys\u0000CONSTANT\u0000sys.REQUEST_STATUS_ERROR_NOT_FOUND\u0000": "const REQUEST_STATUS_ERROR_NOT_FOUND: number & { readonly __brand: \"sys.REQUEST_STATUS_ERROR_NOT_FOUND\" };",
1182
+ "sys\u0000CONSTANT\u0000sys.REQUEST_STATUS_FINISHED\u0000": "const REQUEST_STATUS_FINISHED: number & { readonly __brand: \"sys.REQUEST_STATUS_FINISHED\" };",
1183
+ "sys\u0000FUNCTION\u0000sys.deserialize\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function deserialize(buffer: string): Record<string | number, unknown>;",
1184
+ "sys\u0000FUNCTION\u0000sys.exists\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function exists(path: string): boolean;",
1185
+ "sys\u0000FUNCTION\u0000sys.exit\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function exit(code: number): void;",
1186
+ "sys\u0000FUNCTION\u0000sys.get_application_info\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_application_info(app_string: string): { installed: boolean };",
1187
+ "sys\u0000FUNCTION\u0000sys.get_application_path\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_application_path(): string;",
1188
+ "sys\u0000FUNCTION\u0000sys.get_config_boolean\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":true}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_config_boolean(key: string, default_value?: boolean): boolean;",
1189
+ "sys\u0000FUNCTION\u0000sys.get_config_int\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_config_int(key: string, default_value?: number): number;",
1190
+ "sys\u0000FUNCTION\u0000sys.get_config_number\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_config_number(key: string, default_value?: number): number;",
1191
+ "sys\u0000FUNCTION\u0000sys.get_config_string\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_config_string(key: string, default_value?: string): string;",
1192
+ "sys\u0000FUNCTION\u0000sys.get_connectivity\u0000[]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_connectivity(): Opaque<\"constant\">;",
1193
+ "sys\u0000FUNCTION\u0000sys.get_engine_info\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_engine_info(): { version: string; version_sha1: string; is_debug: boolean };",
1194
+ "sys\u0000FUNCTION\u0000sys.get_host_path\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_host_path(filename: string): string;",
1195
+ "sys\u0000FUNCTION\u0000sys.get_ifaddrs\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_ifaddrs(): { name: string; address: string; mac: string; up: boolean; running: boolean }[];",
1196
+ "sys\u0000FUNCTION\u0000sys.get_save_file\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_save_file(application_id: string, file_name: string): string;",
1197
+ "sys\u0000FUNCTION\u0000sys.get_sys_info\u0000[{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_sys_info(options?: { ignore_secure?: boolean }): { device_model: string; manufacturer: string; system_name: string; system_version: string; api_version: string; language: string; device_language: string; territory: string; gmt_offset: number; device_ident: string; user_agent: string };",
1198
+ "sys\u0000FUNCTION\u0000sys.load\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function load(filename: string): Record<string | number, unknown>;",
1199
+ "sys\u0000FUNCTION\u0000sys.load_buffer\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"buffer\"],\"isOptional\":false}]": "function load_buffer(path: string): Opaque<\"buffer\">;",
1200
+ "sys\u0000FUNCTION\u0000sys.load_buffer_async\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"function(self, request_id, result)\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function load_buffer_async(path: string, status_callback: (self: unknown, request_id: unknown, result: unknown) => void): number;",
1201
+ "sys\u0000FUNCTION\u0000sys.load_resource\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function load_resource(filename: string): LuaMultiReturn<[string | unknown, string | unknown]>;",
1202
+ "sys\u0000FUNCTION\u0000sys.open_url\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function open_url(url: string, attributes?: { target?: string }): boolean;",
1203
+ "sys\u0000FUNCTION\u0000sys.reboot\u0000[{\"types\":[\"string\"],\"isOptional\":true},{\"types\":[\"string\"],\"isOptional\":true},{\"types\":[\"string\"],\"isOptional\":true},{\"types\":[\"string\"],\"isOptional\":true},{\"types\":[\"string\"],\"isOptional\":true},{\"types\":[\"string\"],\"isOptional\":true}]->[]": "function reboot(arg1?: string, arg2?: string, arg3?: string, arg4?: string, arg5?: string, arg6?: string): void;",
1204
+ "sys\u0000FUNCTION\u0000sys.save\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function save(filename: string, table: Record<string | number, unknown>): void;",
1205
+ "sys\u0000FUNCTION\u0000sys.serialize\u0000[{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function serialize(table: Record<string | number, unknown>): string;",
1206
+ "sys\u0000FUNCTION\u0000sys.set_connectivity_host\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function set_connectivity_host(host: string): void;",
1207
+ "sys\u0000FUNCTION\u0000sys.set_engine_throttle\u0000[{\"types\":[\"boolean\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_engine_throttle(enable: boolean, cooldown: number): void;",
1208
+ "sys\u0000FUNCTION\u0000sys.set_error_handler\u0000[{\"types\":[\"function(source, message, traceback)\"],\"isOptional\":false}]->[]": "function set_error_handler(error_handler: (source: unknown, message: unknown, traceback: unknown) => void): void;",
1209
+ "sys\u0000FUNCTION\u0000sys.set_render_enable\u0000[{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_render_enable(enable: boolean): void;",
1210
+ "sys\u0000FUNCTION\u0000sys.set_update_frequency\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_update_frequency(frequency: number): void;",
1211
+ "sys\u0000FUNCTION\u0000sys.set_vsync_swap_interval\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_vsync_swap_interval(swap_interval: number): void;",
1212
+ "tilemap\u0000CONSTANT\u0000tilemap.H_FLIP\u0000": "const H_FLIP: number & { readonly __brand: \"tilemap.H_FLIP\" };",
1213
+ "tilemap\u0000CONSTANT\u0000tilemap.ROTATE_180\u0000": "const ROTATE_180: number & { readonly __brand: \"tilemap.ROTATE_180\" };",
1214
+ "tilemap\u0000CONSTANT\u0000tilemap.ROTATE_270\u0000": "const ROTATE_270: number & { readonly __brand: \"tilemap.ROTATE_270\" };",
1215
+ "tilemap\u0000CONSTANT\u0000tilemap.ROTATE_90\u0000": "const ROTATE_90: number & { readonly __brand: \"tilemap.ROTATE_90\" };",
1216
+ "tilemap\u0000CONSTANT\u0000tilemap.V_FLIP\u0000": "const V_FLIP: number & { readonly __brand: \"tilemap.V_FLIP\" };",
1217
+ "tilemap\u0000FUNCTION\u0000tilemap.get_bounds\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]": "function get_bounds(url: string | Hash | Url): LuaMultiReturn<[number, number, number, number]>;",
1218
+ "tilemap\u0000FUNCTION\u0000tilemap.get_tile\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_tile(url: string | Hash | Url, layer: string | Hash, x: number, y: number): number;",
1219
+ "tilemap\u0000FUNCTION\u0000tilemap.get_tile_info\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_tile_info(url: string | Hash | Url, layer: string | Hash, x: number, y: number): { index: number; h_flip: boolean; v_flip: boolean; rotate_90: boolean };",
1220
+ "tilemap\u0000FUNCTION\u0000tilemap.get_tiles\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_tiles(url: string | Hash | Url, layer: string | Hash): LuaMap<number, LuaMap<number, number>>;",
1221
+ "tilemap\u0000FUNCTION\u0000tilemap.reset_constant\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function reset_constant(url: string | Hash | Url, constant: string | Hash): void;",
1222
+ "tilemap\u0000FUNCTION\u0000tilemap.set_tile\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true}]->[]": "function set_tile(url: string | Hash | Url, layer: string | Hash, x: number, y: number, tile: number, transform_bitmask?: number): void;",
1223
+ "tilemap\u0000FUNCTION\u0000tilemap.set_visible\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_visible(url: string | Hash | Url, layer: string | Hash, visible: boolean): void;",
1224
+ "tilemap\u0000PROPERTY\u0000material\u0000": "material: Hash;",
1225
+ "tilemap\u0000PROPERTY\u0000tile_source\u0000": "tile_source: Hash;",
1226
+ "timer\u0000CONSTANT\u0000timer.INVALID_TIMER_HANDLE\u0000": "const INVALID_TIMER_HANDLE: number & { readonly __brand: \"timer.INVALID_TIMER_HANDLE\" };",
1227
+ "timer\u0000FUNCTION\u0000timer.cancel\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function cancel(handle: number): boolean;",
1228
+ "timer\u0000FUNCTION\u0000timer.delay\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false},{\"types\":[\"function(self, handle, time_elapsed)\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function delay(delay: number, repeating: boolean, callback: (self: unknown, handle: unknown, time_elapsed: unknown) => void): number;",
1229
+ "timer\u0000FUNCTION\u0000timer.get_info\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"table\"],\"isOptional\":false}]": "function get_info(handle: number): { time_remaining: number; delay: number; repeating: boolean } | unknown;",
1230
+ "timer\u0000FUNCTION\u0000timer.trigger\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function trigger(handle: number): boolean;",
1231
+ "types\u0000FUNCTION\u0000types.is_hash\u0000[{\"types\":[\"any\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_hash(var_: unknown): var_ is Hash;",
1232
+ "types\u0000FUNCTION\u0000types.is_matrix4\u0000[{\"types\":[\"any\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_matrix4(var_: unknown): var_ is Matrix4;",
1233
+ "types\u0000FUNCTION\u0000types.is_quat\u0000[{\"types\":[\"any\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_quat(var_: unknown): var_ is Quaternion;",
1234
+ "types\u0000FUNCTION\u0000types.is_url\u0000[{\"types\":[\"any\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_url(var_: unknown): var_ is Url;",
1235
+ "types\u0000FUNCTION\u0000types.is_vector\u0000[{\"types\":[\"any\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_vector(var_: unknown): var_ is Vector;",
1236
+ "types\u0000FUNCTION\u0000types.is_vector3\u0000[{\"types\":[\"any\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_vector3(var_: unknown): var_ is Vector3;",
1237
+ "types\u0000FUNCTION\u0000types.is_vector4\u0000[{\"types\":[\"any\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_vector4(var_: unknown): var_ is Vector4;",
1238
+ "vmath\u0000FUNCTION\u0000vmath.conj\u0000[{\"types\":[\"quaternion\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function conj(q1: Quaternion): Quaternion;",
1239
+ "vmath\u0000FUNCTION\u0000vmath.cross\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function cross(v1: Vector3, v2: Vector3): Vector3;",
1240
+ "vmath\u0000FUNCTION\u0000vmath.dot\u0000[{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function dot(v1: Vector3 | Vector4, v2: Vector3 | Vector4): number;",
1241
+ "vmath\u0000FUNCTION\u0000vmath.euler_to_quat\u0000[{\"types\":[\"number\",\"vector3\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function euler_to_quat(x: number | Vector3, y: number, z: number): Quaternion;",
1242
+ "vmath\u0000FUNCTION\u0000vmath.inv\u0000[{\"types\":[\"matrix4\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function inv(m1: Matrix4): Matrix4;",
1243
+ "vmath\u0000FUNCTION\u0000vmath.length\u0000[{\"types\":[\"quaternion\",\"vector3\",\"vector4\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function length(v: Vector3 | Vector4 | Quaternion): number;",
1244
+ "vmath\u0000FUNCTION\u0000vmath.length_sqr\u0000[{\"types\":[\"quaternion\",\"vector3\",\"vector4\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function length_sqr(v: Vector3 | Vector4 | Quaternion): number;",
1245
+ "vmath\u0000FUNCTION\u0000vmath.matrix4\u0000[]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4(): Matrix4;",
1246
+ "vmath\u0000FUNCTION\u0000vmath.matrix4\u0000[{\"types\":[\"matrix4\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4(m1: Matrix4): Matrix4;",
1247
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_axis_angle\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_axis_angle(v: Vector3, angle: number): Matrix4;",
1248
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_compose\u0000[{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"quaternion\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_compose(translation: Vector3 | Vector4, rotation: Quaternion, scale: Vector3): Matrix4;",
1249
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_frustum\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_frustum(left: number, right: number, bottom: number, top: number, near: number, far: number): Matrix4;",
1250
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_look_at\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_look_at(eye: Vector3, look_at: Vector3, up: Vector3): Matrix4;",
1251
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_orthographic\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_orthographic(left: number, right: number, bottom: number, top: number, near: number, far: number): Matrix4;",
1252
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_perspective\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_perspective(fov: number, aspect: number, near: number, far: number): Matrix4;",
1253
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_quat\u0000[{\"types\":[\"quaternion\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_quat(q: Quaternion): Matrix4;",
1254
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_rotation_x\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_rotation_x(angle: number): Matrix4;",
1255
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_rotation_y\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_rotation_y(angle: number): Matrix4;",
1256
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_rotation_z\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_rotation_z(angle: number): Matrix4;",
1257
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_scale\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_scale(scale_x: number, scale_y: number, scale_z: number): Matrix4;",
1258
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_scale\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_scale(scale: number): Matrix4;",
1259
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_scale\u0000[{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_scale(scale: Vector3): Matrix4;",
1260
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_translation\u0000[{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_translation(position: Vector3 | Vector4): Matrix4;",
1261
+ "vmath\u0000FUNCTION\u0000vmath.ortho_inv\u0000[{\"types\":[\"matrix4\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function ortho_inv(m1: Matrix4): Matrix4;",
1262
+ "vmath\u0000FUNCTION\u0000vmath.project\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function project(v1: Vector3, v2: Vector3): number;",
1263
+ "vmath\u0000FUNCTION\u0000vmath.quat\u0000[]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat(): Quaternion;",
1264
+ "vmath\u0000FUNCTION\u0000vmath.quat\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat(x: number, y: number, z: number, w: number): Quaternion;",
1265
+ "vmath\u0000FUNCTION\u0000vmath.quat\u0000[{\"types\":[\"quaternion\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat(q1: Quaternion): Quaternion;",
1266
+ "vmath\u0000FUNCTION\u0000vmath.quat_axis_angle\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat_axis_angle(v: Vector3, angle: number): Quaternion;",
1267
+ "vmath\u0000FUNCTION\u0000vmath.quat_basis\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat_basis(x: Vector3, y: Vector3, z: Vector3): Quaternion;",
1268
+ "vmath\u0000FUNCTION\u0000vmath.quat_from_to\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat_from_to(v1: Vector3, v2: Vector3): Quaternion;",
1269
+ "vmath\u0000FUNCTION\u0000vmath.quat_matrix4\u0000[{\"types\":[\"matrix4\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat_matrix4(matrix: Matrix4): Quaternion;",
1270
+ "vmath\u0000FUNCTION\u0000vmath.quat_rotation_x\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat_rotation_x(angle: number): Quaternion;",
1271
+ "vmath\u0000FUNCTION\u0000vmath.quat_rotation_y\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat_rotation_y(angle: number): Quaternion;",
1272
+ "vmath\u0000FUNCTION\u0000vmath.quat_rotation_z\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat_rotation_z(angle: number): Quaternion;",
1273
+ "vmath\u0000FUNCTION\u0000vmath.quat_to_euler\u0000[{\"types\":[\"quaternion\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]": "function quat_to_euler(q: Quaternion): LuaMultiReturn<[number, number, number]>;",
1274
+ "vmath\u0000FUNCTION\u0000vmath.rotate\u0000[{\"types\":[\"quaternion\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function rotate(q: Quaternion, v1: Vector3): Vector3;",
1275
+ "vmath\u0000FUNCTION\u0000vmath.vector\u0000[{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"vector\"],\"isOptional\":false}]": "function vector(t: number[]): Vector;",
1276
+ "vmath\u0000FUNCTION\u0000vmath.vector3\u0000[]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function vector3(): Vector3;",
1277
+ "vmath\u0000FUNCTION\u0000vmath.vector3\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function vector3(x: number, y: number, z: number): Vector3;",
1278
+ "vmath\u0000FUNCTION\u0000vmath.vector3\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function vector3(n: number): Vector3;",
1279
+ "vmath\u0000FUNCTION\u0000vmath.vector3\u0000[{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function vector3(v1: Vector3): Vector3;",
1280
+ "vmath\u0000FUNCTION\u0000vmath.vector4\u0000[]->[{\"types\":[\"vector4\"],\"isOptional\":false}]": "function vector4(): Vector4;",
1281
+ "vmath\u0000FUNCTION\u0000vmath.vector4\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"vector4\"],\"isOptional\":false}]": "function vector4(x: number, y: number, z: number, w: number): Vector4;",
1282
+ "vmath\u0000FUNCTION\u0000vmath.vector4\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"vector4\"],\"isOptional\":false}]": "function vector4(n: number): Vector4;",
1283
+ "vmath\u0000FUNCTION\u0000vmath.vector4\u0000[{\"types\":[\"vector4\"],\"isOptional\":false}]->[{\"types\":[\"vector4\"],\"isOptional\":false}]": "function vector4(v1: Vector4): Vector4;",
1284
+ "webview\u0000FUNCTION\u0000webview.create\u0000[{\"types\":[\"function\"],\"isOptional\":false}]->[]": "function create(callback: (...args: unknown[]) => unknown): void;",
1285
+ "webview\u0000FUNCTION\u0000webview.destroy\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function destroy(webview_id: number): void;",
1286
+ "webview\u0000FUNCTION\u0000webview.eval\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function eval(webview_id: number, code: string): void;",
1287
+ "webview\u0000FUNCTION\u0000webview.is_visible\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function is_visible(webview_id: number): void;",
1288
+ "webview\u0000FUNCTION\u0000webview.open_raw\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function open_raw(webview_id: number, html: string, options: Record<string | number, unknown>): void;",
1289
+ "webview\u0000FUNCTION\u0000webview.set_position\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_position(webview_id: number, x: number, y: number, width: number, height: number): void;",
1290
+ "webview\u0000FUNCTION\u0000webview.set_transparent\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_transparent(webview_id: number, transparent: boolean): void;",
1291
+ "webview\u0000FUNCTION\u0000webview.set_visible\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_visible(webview_id: number, visible: number): void;",
1292
+ "window\u0000CONSTANT\u0000window.DIMMING_OFF\u0000": "const DIMMING_OFF: number & { readonly __brand: \"window.DIMMING_OFF\" };",
1293
+ "window\u0000CONSTANT\u0000window.DIMMING_ON\u0000": "const DIMMING_ON: number & { readonly __brand: \"window.DIMMING_ON\" };",
1294
+ "window\u0000CONSTANT\u0000window.DIMMING_UNKNOWN\u0000": "const DIMMING_UNKNOWN: number & { readonly __brand: \"window.DIMMING_UNKNOWN\" };",
1295
+ "window\u0000CONSTANT\u0000window.WINDOW_EVENT_DEICONIFIED\u0000": "const WINDOW_EVENT_DEICONIFIED: number & { readonly __brand: \"window.WINDOW_EVENT_DEICONIFIED\" };",
1296
+ "window\u0000CONSTANT\u0000window.WINDOW_EVENT_FOCUS_GAINED\u0000": "const WINDOW_EVENT_FOCUS_GAINED: number & { readonly __brand: \"window.WINDOW_EVENT_FOCUS_GAINED\" };",
1297
+ "window\u0000CONSTANT\u0000window.WINDOW_EVENT_FOCUS_LOST\u0000": "const WINDOW_EVENT_FOCUS_LOST: number & { readonly __brand: \"window.WINDOW_EVENT_FOCUS_LOST\" };",
1298
+ "window\u0000CONSTANT\u0000window.WINDOW_EVENT_ICONFIED\u0000": "const WINDOW_EVENT_ICONFIED: number & { readonly __brand: \"window.WINDOW_EVENT_ICONFIED\" };",
1299
+ "window\u0000CONSTANT\u0000window.WINDOW_EVENT_RESIZED\u0000": "const WINDOW_EVENT_RESIZED: number & { readonly __brand: \"window.WINDOW_EVENT_RESIZED\" };",
1300
+ "window\u0000FUNCTION\u0000window.get_dim_mode\u0000[]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_dim_mode(): Opaque<\"constant\">;",
1301
+ "window\u0000FUNCTION\u0000window.get_display_scale\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_display_scale(): number;",
1302
+ "window\u0000FUNCTION\u0000window.get_mouse_lock\u0000[]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_mouse_lock(): boolean;",
1303
+ "window\u0000FUNCTION\u0000window.get_safe_area\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_safe_area(): { safe_area: { x: number; y: number; width: number; height: number; inset_left: number; inset_top: number; inset_right: number; inset_bottom: number } };",
1304
+ "window\u0000FUNCTION\u0000window.get_size\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]": "function get_size(): LuaMultiReturn<[number, number]>;",
1305
+ "window\u0000FUNCTION\u0000window.set_dim_mode\u0000[{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_dim_mode(mode: Opaque<\"constant\">): void;",
1306
+ "window\u0000FUNCTION\u0000window.set_listener\u0000[{\"types\":[\"function(self, event, data)\",\"nil\"],\"isOptional\":false}]->[]": "function set_listener(callback?: (self: unknown, event: typeof WINDOW_EVENT_FOCUS_LOST | typeof WINDOW_EVENT_FOCUS_GAINED | typeof WINDOW_EVENT_RESIZED | typeof WINDOW_EVENT_ICONFIED | typeof WINDOW_EVENT_DEICONIFIED, data: Record<string | number, unknown>) => void): void;",
1307
+ "window\u0000FUNCTION\u0000window.set_mouse_lock\u0000[{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_mouse_lock(flag: boolean): void;",
1308
+ "window\u0000FUNCTION\u0000window.set_position\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_position(x: number, y: number): void;",
1309
+ "window\u0000FUNCTION\u0000window.set_size\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_size(width: number, height: number): void;",
1310
+ "window\u0000FUNCTION\u0000window.set_title\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function set_title(title: string): void;",
1311
+ "zlib\u0000FUNCTION\u0000zlib.deflate\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function deflate(buf: string): string;",
1312
+ "zlib\u0000FUNCTION\u0000zlib.inflate\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function inflate(buf: string): string;"
1313
+ },
1314
+ "1.12.4": {
1315
+ "b2d\u0000FUNCTION\u0000b2d.get_body\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"b2Body\"],\"isOptional\":false}]": "function get_body(url: string | Hash | Url): Opaque<\"b2Body\">;",
1316
+ "b2d\u0000FUNCTION\u0000b2d.get_world\u0000[]->[{\"types\":[\"b2World\"],\"isOptional\":false}]": "function get_world(): Opaque<\"b2World\">;",
1317
+ "b2d\u0000TYPEDEF\u0000b2Body\u0000": "type b2Body = Opaque<\"b2Body\">;",
1318
+ "b2d\u0000TYPEDEF\u0000b2World\u0000": "type b2World = Opaque<\"b2World\">;",
1319
+ "b2d.body\u0000CONSTANT\u0000b2d.body.B2_DYNAMIC_BODY\u0000": "const B2_DYNAMIC_BODY: number & { readonly __brand: \"b2d.body.B2_DYNAMIC_BODY\" };",
1320
+ "b2d.body\u0000CONSTANT\u0000b2d.body.B2_KINEMATIC_BODY\u0000": "const B2_KINEMATIC_BODY: number & { readonly __brand: \"b2d.body.B2_KINEMATIC_BODY\" };",
1321
+ "b2d.body\u0000CONSTANT\u0000b2d.body.B2_STATIC_BODY\u0000": "const B2_STATIC_BODY: number & { readonly __brand: \"b2d.body.B2_STATIC_BODY\" };",
1322
+ "b2d.body\u0000FUNCTION\u0000b2d.body.apply_angular_impulse\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function apply_angular_impulse(body: Opaque<\"b2Body\">, impulse: number): void;",
1323
+ "b2d.body\u0000FUNCTION\u0000b2d.body.apply_force\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[]": "function apply_force(body: Opaque<\"b2Body\">, force: Vector3, point: Vector3): void;",
1324
+ "b2d.body\u0000FUNCTION\u0000b2d.body.apply_force_to_center\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[]": "function apply_force_to_center(body: Opaque<\"b2Body\">, force: Vector3): void;",
1325
+ "b2d.body\u0000FUNCTION\u0000b2d.body.apply_linear_impulse\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[]": "function apply_linear_impulse(body: Opaque<\"b2Body\">, impulse: Vector3, point: Vector3): void;",
1326
+ "b2d.body\u0000FUNCTION\u0000b2d.body.apply_torque\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function apply_torque(body: Opaque<\"b2Body\">, torque: number): void;",
1327
+ "b2d.body\u0000FUNCTION\u0000b2d.body.enable_sleep\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable_sleep(body: Opaque<\"b2Body\">, enable: boolean): void;",
1328
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_angle\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_angle(body: Opaque<\"b2Body\">): number;",
1329
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_angular_damping\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_angular_damping(body: Opaque<\"b2Body\">): number;",
1330
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_angular_velocity\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_angular_velocity(body: Opaque<\"b2Body\">): number;",
1331
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_gravity_scale\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_gravity_scale(body: Opaque<\"b2Body\">): number;",
1332
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_linear_damping\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_linear_damping(body: Opaque<\"b2Body\">): number;",
1333
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_linear_velocity\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_linear_velocity(body: Opaque<\"b2Body\">): Vector3;",
1334
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_linear_velocity_from_local_point\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_linear_velocity_from_local_point(body: Opaque<\"b2Body\">, local_point: Vector3): Vector3;",
1335
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_linear_velocity_from_world_point\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_linear_velocity_from_world_point(body: Opaque<\"b2Body\">, world_point: Vector3): Vector3;",
1336
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_local_center_of_mass\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_local_center_of_mass(body: Opaque<\"b2Body\">): Vector3;",
1337
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_local_point\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_local_point(body: Opaque<\"b2Body\">, world_point: Vector3): Vector3;",
1338
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_local_vector\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_local_vector(body: Opaque<\"b2Body\">, world_vector: Vector3): Vector3;",
1339
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_mass\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_mass(body: Opaque<\"b2Body\">): number;",
1340
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_position\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_position(body: Opaque<\"b2Body\">): Vector3;",
1341
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_rotational_inertia\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_rotational_inertia(body: Opaque<\"b2Body\">): number;",
1342
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_type\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"b2BodyType\"],\"isOptional\":false}]": "function get_type(body: Opaque<\"b2Body\">): (number & { readonly __brand: \"b2d.body.B2_DYNAMIC_BODY\" }) | (number & { readonly __brand: \"b2d.body.B2_KINEMATIC_BODY\" }) | (number & { readonly __brand: \"b2d.body.B2_STATIC_BODY\" });",
1343
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_world\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"b2World\"],\"isOptional\":false}]": "function get_world(body: Opaque<\"b2Body\">): Opaque<\"b2World\">;",
1344
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_world_center_of_mass\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_world_center_of_mass(body: Opaque<\"b2Body\">): Vector3;",
1345
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_world_point\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_world_point(body: Opaque<\"b2Body\">, local_vector: Vector3): Vector3;",
1346
+ "b2d.body\u0000FUNCTION\u0000b2d.body.get_world_vector\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_world_vector(body: Opaque<\"b2Body\">, local_vector: Vector3): Vector3;",
1347
+ "b2d.body\u0000FUNCTION\u0000b2d.body.is_active\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_active(body: Opaque<\"b2Body\">): boolean;",
1348
+ "b2d.body\u0000FUNCTION\u0000b2d.body.is_awake\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_awake(body: Opaque<\"b2Body\">): boolean;",
1349
+ "b2d.body\u0000FUNCTION\u0000b2d.body.is_bullet\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_bullet(body: Opaque<\"b2Body\">): boolean;",
1350
+ "b2d.body\u0000FUNCTION\u0000b2d.body.is_fixed_rotation\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_fixed_rotation(body: Opaque<\"b2Body\">): boolean;",
1351
+ "b2d.body\u0000FUNCTION\u0000b2d.body.is_sleeping_enabled\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_sleeping_enabled(body: Opaque<\"b2Body\">): boolean;",
1352
+ "b2d.body\u0000FUNCTION\u0000b2d.body.reset_mass_data\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false}]->[]": "function reset_mass_data(body: Opaque<\"b2Body\">): void;",
1353
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_active\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_active(body: Opaque<\"b2Body\">, enable: boolean): void;",
1354
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_angular_damping\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_angular_damping(body: Opaque<\"b2Body\">, damping: number): void;",
1355
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_angular_velocity\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_angular_velocity(body: Opaque<\"b2Body\">, omega: number): void;",
1356
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_awake\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_awake(body: Opaque<\"b2Body\">, enable: boolean): void;",
1357
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_bullet\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_bullet(body: Opaque<\"b2Body\">, enable: boolean): void;",
1358
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_fixed_rotation\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_fixed_rotation(body: Opaque<\"b2Body\">, enable: boolean): void;",
1359
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_gravity_scale\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_gravity_scale(body: Opaque<\"b2Body\">, scale: number): void;",
1360
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_linear_damping\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_linear_damping(body: Opaque<\"b2Body\">, damping: number): void;",
1361
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_linear_velocity\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[]": "function set_linear_velocity(body: Opaque<\"b2Body\">, velocity: Vector3): void;",
1362
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_transform\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_transform(body: Opaque<\"b2Body\">, position: Vector3, angle: number): void;",
1363
+ "b2d.body\u0000FUNCTION\u0000b2d.body.set_type\u0000[{\"types\":[\"b2Body\"],\"isOptional\":false},{\"types\":[\"b2BodyType\"],\"isOptional\":false}]->[]": "function set_type(body: Opaque<\"b2Body\">, type: (number & { readonly __brand: \"b2d.body.B2_DYNAMIC_BODY\" }) | (number & { readonly __brand: \"b2d.body.B2_KINEMATIC_BODY\" }) | (number & { readonly __brand: \"b2d.body.B2_STATIC_BODY\" })): void;",
1364
+ "b2d.body\u0000TYPEDEF\u0000b2Body\u0000": "type b2Body = Opaque<\"b2Body\">;",
1365
+ "b2d.body\u0000TYPEDEF\u0000b2World\u0000": "type b2World = Opaque<\"b2World\">;",
1366
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_FLOAT32\u0000": "const VALUE_TYPE_FLOAT32: number & { readonly __brand: \"buffer.VALUE_TYPE_FLOAT32\" };",
1367
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_INT16\u0000": "const VALUE_TYPE_INT16: number & { readonly __brand: \"buffer.VALUE_TYPE_INT16\" };",
1368
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_INT32\u0000": "const VALUE_TYPE_INT32: number & { readonly __brand: \"buffer.VALUE_TYPE_INT32\" };",
1369
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_INT64\u0000": "const VALUE_TYPE_INT64: number & { readonly __brand: \"buffer.VALUE_TYPE_INT64\" };",
1370
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_INT8\u0000": "const VALUE_TYPE_INT8: number & { readonly __brand: \"buffer.VALUE_TYPE_INT8\" };",
1371
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_UINT16\u0000": "const VALUE_TYPE_UINT16: number & { readonly __brand: \"buffer.VALUE_TYPE_UINT16\" };",
1372
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_UINT32\u0000": "const VALUE_TYPE_UINT32: number & { readonly __brand: \"buffer.VALUE_TYPE_UINT32\" };",
1373
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_UINT64\u0000": "const VALUE_TYPE_UINT64: number & { readonly __brand: \"buffer.VALUE_TYPE_UINT64\" };",
1374
+ "buffer\u0000CONSTANT\u0000buffer.VALUE_TYPE_UINT8\u0000": "const VALUE_TYPE_UINT8: number & { readonly __brand: \"buffer.VALUE_TYPE_UINT8\" };",
1375
+ "buffer\u0000FUNCTION\u0000buffer.copy_buffer\u0000[{\"types\":[\"buffer\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"buffer\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function copy_buffer(dst: Opaque<\"buffer\">, dstoffset: number, src: Opaque<\"buffer\">, srcoffset: number, count: number): void;",
1376
+ "buffer\u0000FUNCTION\u0000buffer.copy_stream\u0000[{\"types\":[\"bufferstream\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"bufferstream\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function copy_stream(dst: Opaque<\"bufferstream\"> & { [index: number]: number }, dstoffset: number, src: Opaque<\"bufferstream\"> & { [index: number]: number }, srcoffset: number, count: number): void;",
1377
+ "buffer\u0000FUNCTION\u0000buffer.create\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"buffer\"],\"isOptional\":false}]": "function create(element_count: number, declaration: { name?: Hash | string; type?: Opaque<\"constant\">; count?: number }): Opaque<\"buffer\">;",
1378
+ "buffer\u0000FUNCTION\u0000buffer.get_bytes\u0000[{\"types\":[\"buffer\"],\"isOptional\":false},{\"types\":[\"hash\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_bytes(buffer: Opaque<\"buffer\">, stream_name: Hash): string;",
1379
+ "buffer\u0000FUNCTION\u0000buffer.get_metadata\u0000[{\"types\":[\"buffer\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"table\"],\"isOptional\":false},{\"types\":[\"constant\",\"nil\"],\"isOptional\":false}]": "function get_metadata(buf: Opaque<\"buffer\">, metadata_name: Hash | string): LuaMultiReturn<[number[] | unknown, Opaque<\"constant\"> | unknown]>;",
1380
+ "buffer\u0000FUNCTION\u0000buffer.get_stream\u0000[{\"types\":[\"buffer\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"bufferstream\"],\"isOptional\":false}]": "function get_stream(buffer: Opaque<\"buffer\">, stream_name: Hash | string): Opaque<\"bufferstream\"> & { [index: number]: number };",
1381
+ "buffer\u0000FUNCTION\u0000buffer.set_metadata\u0000[{\"types\":[\"buffer\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_metadata(buf: Opaque<\"buffer\">, metadata_name: Hash | string, values: number[], value_type: Opaque<\"constant\">): void;",
1382
+ "camera\u0000CONSTANT\u0000camera.ORTHO_MODE_AUTO_COVER\u0000": "const ORTHO_MODE_AUTO_COVER: number & { readonly __brand: \"camera.ORTHO_MODE_AUTO_COVER\" };",
1383
+ "camera\u0000CONSTANT\u0000camera.ORTHO_MODE_AUTO_FIT\u0000": "const ORTHO_MODE_AUTO_FIT: number & { readonly __brand: \"camera.ORTHO_MODE_AUTO_FIT\" };",
1384
+ "camera\u0000CONSTANT\u0000camera.ORTHO_MODE_FIXED\u0000": "const ORTHO_MODE_FIXED: number & { readonly __brand: \"camera.ORTHO_MODE_FIXED\" };",
1385
+ "camera\u0000FUNCTION\u0000camera.get_aspect_ratio\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_aspect_ratio(camera?: Url | number): number;",
1386
+ "camera\u0000FUNCTION\u0000camera.get_auto_aspect_ratio\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_auto_aspect_ratio(camera?: Url | number): boolean;",
1387
+ "camera\u0000FUNCTION\u0000camera.get_cameras\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_cameras(): Url[];",
1388
+ "camera\u0000FUNCTION\u0000camera.get_enabled\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_enabled(camera?: Url | number): boolean;",
1389
+ "camera\u0000FUNCTION\u0000camera.get_far_z\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_far_z(camera?: Url | number): number;",
1390
+ "camera\u0000FUNCTION\u0000camera.get_fov\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_fov(camera?: Url | number): number;",
1391
+ "camera\u0000FUNCTION\u0000camera.get_near_z\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_near_z(camera?: Url | number): number;",
1392
+ "camera\u0000FUNCTION\u0000camera.get_orthographic_mode\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_orthographic_mode(camera?: Url | number): number;",
1393
+ "camera\u0000FUNCTION\u0000camera.get_orthographic_zoom\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_orthographic_zoom(camera?: Url | number): number;",
1394
+ "camera\u0000FUNCTION\u0000camera.get_projection\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function get_projection(camera?: Url | number): Matrix4;",
1395
+ "camera\u0000FUNCTION\u0000camera.get_view\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function get_view(camera?: Url | number): Matrix4;",
1396
+ "camera\u0000FUNCTION\u0000camera.screen_to_world\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function screen_to_world(pos: Vector3, camera?: Url | number): Vector3;",
1397
+ "camera\u0000FUNCTION\u0000camera.screen_xy_to_world\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function screen_xy_to_world(x: number, y: number, camera?: Url | number): Vector3;",
1398
+ "camera\u0000FUNCTION\u0000camera.set_aspect_ratio\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_aspect_ratio(camera: Url | number | undefined, aspect_ratio: number): void;",
1399
+ "camera\u0000FUNCTION\u0000camera.set_auto_aspect_ratio\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_auto_aspect_ratio(camera: Url | number | undefined, auto_aspect_ratio: boolean): void;",
1400
+ "camera\u0000FUNCTION\u0000camera.set_far_z\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_far_z(camera: Url | number | undefined, far_z: number): void;",
1401
+ "camera\u0000FUNCTION\u0000camera.set_fov\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_fov(camera: Url | number | undefined, fov: number): void;",
1402
+ "camera\u0000FUNCTION\u0000camera.set_near_z\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_near_z(camera: Url | number | undefined, near_z: number): void;",
1403
+ "camera\u0000FUNCTION\u0000camera.set_orthographic_mode\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_orthographic_mode(camera: Url | number | undefined, mode: number): void;",
1404
+ "camera\u0000FUNCTION\u0000camera.set_orthographic_zoom\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_orthographic_zoom(camera: Url | number | undefined, orthographic_zoom: number): void;",
1405
+ "camera\u0000FUNCTION\u0000camera.world_to_screen\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function world_to_screen(world_pos: Vector3, camera?: Url | number): Vector3;",
1406
+ "collectionfactory\u0000CONSTANT\u0000collectionfactory.STATUS_LOADED\u0000": "const STATUS_LOADED: number & { readonly __brand: \"collectionfactory.STATUS_LOADED\" };",
1407
+ "collectionfactory\u0000CONSTANT\u0000collectionfactory.STATUS_LOADING\u0000": "const STATUS_LOADING: number & { readonly __brand: \"collectionfactory.STATUS_LOADING\" };",
1408
+ "collectionfactory\u0000CONSTANT\u0000collectionfactory.STATUS_UNLOADED\u0000": "const STATUS_UNLOADED: number & { readonly __brand: \"collectionfactory.STATUS_UNLOADED\" };",
1409
+ "collectionfactory\u0000FUNCTION\u0000collectionfactory.create\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":true},{\"types\":[\"quaternion\"],\"isOptional\":true},{\"types\":[\"table\"],\"isOptional\":true},{\"types\":[\"number\",\"vector3\"],\"isOptional\":true}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function create(url: string | Hash | Url, position?: Vector3, rotation?: Quaternion, properties?: Record<string | number, unknown>, scale?: number | Vector3): LuaMap<Hash, Hash>;",
1410
+ "collectionfactory\u0000FUNCTION\u0000collectionfactory.get_status\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_status(url?: string | Hash | Url): Opaque<\"constant\">;",
1411
+ "collectionfactory\u0000FUNCTION\u0000collectionfactory.load\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true},{\"types\":[\"function(self, url, result)\"],\"isOptional\":true}]->[]": "function load(url?: string | Hash | Url, complete_function?: (self: unknown, url: unknown, result: unknown) => void): void;",
1412
+ "collectionfactory\u0000FUNCTION\u0000collectionfactory.set_prototype\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true},{\"types\":[\"nil\",\"string\"],\"isOptional\":true}]->[]": "function set_prototype(url?: string | Hash | Url, prototype?: string): void;",
1413
+ "collectionfactory\u0000FUNCTION\u0000collectionfactory.unload\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[]": "function unload(url?: string | Hash | Url): void;",
1414
+ "collectionproxy\u0000CONSTANT\u0000collectionproxy.RESULT_ALREADY_LOADED\u0000": "const RESULT_ALREADY_LOADED: number & { readonly __brand: \"collectionproxy.RESULT_ALREADY_LOADED\" };",
1415
+ "collectionproxy\u0000CONSTANT\u0000collectionproxy.RESULT_LOADING\u0000": "const RESULT_LOADING: number & { readonly __brand: \"collectionproxy.RESULT_LOADING\" };",
1416
+ "collectionproxy\u0000CONSTANT\u0000collectionproxy.RESULT_NOT_EXCLUDED\u0000": "const RESULT_NOT_EXCLUDED: number & { readonly __brand: \"collectionproxy.RESULT_NOT_EXCLUDED\" };",
1417
+ "collectionproxy\u0000FUNCTION\u0000collectionproxy.get_resources\u0000[{\"types\":[\"url\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_resources(collectionproxy: Url): Hash[];",
1418
+ "collectionproxy\u0000FUNCTION\u0000collectionproxy.set_collection\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true},{\"types\":[\"nil\",\"string\"],\"isOptional\":true}]->[{\"types\":[\"boolean\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]": "function set_collection(url?: string | Hash | Url, prototype?: string): LuaMultiReturn<[boolean, number]>;",
1419
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_ANDROID_BUILD_FINGERPRINT\u0000": "const SYSFIELD_ANDROID_BUILD_FINGERPRINT: number & { readonly __brand: \"crash.SYSFIELD_ANDROID_BUILD_FINGERPRINT\" };",
1420
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_DEVICE_LANGUAGE\u0000": "const SYSFIELD_DEVICE_LANGUAGE: number & { readonly __brand: \"crash.SYSFIELD_DEVICE_LANGUAGE\" };",
1421
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_DEVICE_MODEL\u0000": "const SYSFIELD_DEVICE_MODEL: number & { readonly __brand: \"crash.SYSFIELD_DEVICE_MODEL\" };",
1422
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_ENGINE_HASH\u0000": "const SYSFIELD_ENGINE_HASH: number & { readonly __brand: \"crash.SYSFIELD_ENGINE_HASH\" };",
1423
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_ENGINE_VERSION\u0000": "const SYSFIELD_ENGINE_VERSION: number & { readonly __brand: \"crash.SYSFIELD_ENGINE_VERSION\" };",
1424
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_LANGUAGE\u0000": "const SYSFIELD_LANGUAGE: number & { readonly __brand: \"crash.SYSFIELD_LANGUAGE\" };",
1425
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_MANUFACTURER\u0000": "const SYSFIELD_MANUFACTURER: number & { readonly __brand: \"crash.SYSFIELD_MANUFACTURER\" };",
1426
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_MAX\u0000": "const SYSFIELD_MAX: number & { readonly __brand: \"crash.SYSFIELD_MAX\" };",
1427
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_SYSTEM_NAME\u0000": "const SYSFIELD_SYSTEM_NAME: number & { readonly __brand: \"crash.SYSFIELD_SYSTEM_NAME\" };",
1428
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_SYSTEM_VERSION\u0000": "const SYSFIELD_SYSTEM_VERSION: number & { readonly __brand: \"crash.SYSFIELD_SYSTEM_VERSION\" };",
1429
+ "crash\u0000CONSTANT\u0000crash.SYSFIELD_TERRITORY\u0000": "const SYSFIELD_TERRITORY: number & { readonly __brand: \"crash.SYSFIELD_TERRITORY\" };",
1430
+ "crash\u0000CONSTANT\u0000crash.USERFIELD_MAX\u0000": "const USERFIELD_MAX: number & { readonly __brand: \"crash.USERFIELD_MAX\" };",
1431
+ "crash\u0000CONSTANT\u0000crash.USERFIELD_SIZE\u0000": "const USERFIELD_SIZE: number & { readonly __brand: \"crash.USERFIELD_SIZE\" };",
1432
+ "crash\u0000FUNCTION\u0000crash.get_backtrace\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_backtrace(handle: number): Record<string | number, unknown>;",
1433
+ "crash\u0000FUNCTION\u0000crash.get_extra_data\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_extra_data(handle: number): string;",
1434
+ "crash\u0000FUNCTION\u0000crash.get_modules\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_modules(handle: number): Record<string | number, unknown>;",
1435
+ "crash\u0000FUNCTION\u0000crash.get_signum\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_signum(handle: number): number;",
1436
+ "crash\u0000FUNCTION\u0000crash.get_sys_field\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function get_sys_field(handle: number, index: number): string | unknown;",
1437
+ "crash\u0000FUNCTION\u0000crash.get_user_field\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_user_field(handle: number, index: number): string;",
1438
+ "crash\u0000FUNCTION\u0000crash.load_previous\u0000[]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false}]": "function load_previous(): number | unknown;",
1439
+ "crash\u0000FUNCTION\u0000crash.release\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function release(handle: number): void;",
1440
+ "crash\u0000FUNCTION\u0000crash.set_file_path\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function set_file_path(path: string): void;",
1441
+ "crash\u0000FUNCTION\u0000crash.set_user_field\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function set_user_field(index: number, value: string): void;",
1442
+ "crash\u0000FUNCTION\u0000crash.write_dump\u0000[]->[]": "function write_dump(): void;",
1443
+ "factory\u0000CONSTANT\u0000factory.STATUS_LOADED\u0000": "const STATUS_LOADED: number & { readonly __brand: \"factory.STATUS_LOADED\" };",
1444
+ "factory\u0000CONSTANT\u0000factory.STATUS_LOADING\u0000": "const STATUS_LOADING: number & { readonly __brand: \"factory.STATUS_LOADING\" };",
1445
+ "factory\u0000CONSTANT\u0000factory.STATUS_UNLOADED\u0000": "const STATUS_UNLOADED: number & { readonly __brand: \"factory.STATUS_UNLOADED\" };",
1446
+ "factory\u0000FUNCTION\u0000factory.create\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":true},{\"types\":[\"quaternion\"],\"isOptional\":true},{\"types\":[\"table\"],\"isOptional\":true},{\"types\":[\"number\",\"vector3\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function create(url: string | Hash | Url, position?: Vector3, rotation?: Quaternion, properties?: Record<string | number, unknown>, scale?: number | Vector3): Hash;",
1447
+ "factory\u0000FUNCTION\u0000factory.get_status\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_status(url?: string | Hash | Url): Opaque<\"constant\">;",
1448
+ "factory\u0000FUNCTION\u0000factory.load\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true},{\"types\":[\"function(self, url, result)\"],\"isOptional\":true}]->[]": "function load(url?: string | Hash | Url, complete_function?: (self: unknown, url: unknown, result: unknown) => void): void;",
1449
+ "factory\u0000FUNCTION\u0000factory.set_prototype\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true},{\"types\":[\"nil\",\"string\"],\"isOptional\":true}]->[]": "function set_prototype(url?: string | Hash | Url, prototype?: string): void;",
1450
+ "factory\u0000FUNCTION\u0000factory.unload\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[]": "function unload(url?: string | Hash | Url): void;",
1451
+ "font\u0000FUNCTION\u0000font.add_font\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function add_font(fontc: string | Hash, ttf: string | Hash): void;",
1452
+ "font\u0000FUNCTION\u0000font.get_info\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_info(fontc: string | Hash): { path: Hash; fonts: { path: string; path_hash: Hash }[] };",
1453
+ "font\u0000FUNCTION\u0000font.prewarm_text\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"function(self, request_id, result, errstring)\"],\"isOptional\":true}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function prewarm_text(fontc: string | Hash, text: string, callback?: (self: unknown, request_id: unknown, result: unknown, errstring: unknown) => void): number;",
1454
+ "font\u0000FUNCTION\u0000font.remove_font\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function remove_font(fontc: string | Hash, ttf: string | Hash): void;",
1455
+ "go\u0000CONSTANT\u0000go.EASING_INBACK\u0000": "const EASING_INBACK: number & { readonly __brand: \"go.EASING_INBACK\" };",
1456
+ "go\u0000CONSTANT\u0000go.EASING_INBOUNCE\u0000": "const EASING_INBOUNCE: number & { readonly __brand: \"go.EASING_INBOUNCE\" };",
1457
+ "go\u0000CONSTANT\u0000go.EASING_INCIRC\u0000": "const EASING_INCIRC: number & { readonly __brand: \"go.EASING_INCIRC\" };",
1458
+ "go\u0000CONSTANT\u0000go.EASING_INCUBIC\u0000": "const EASING_INCUBIC: number & { readonly __brand: \"go.EASING_INCUBIC\" };",
1459
+ "go\u0000CONSTANT\u0000go.EASING_INELASTIC\u0000": "const EASING_INELASTIC: number & { readonly __brand: \"go.EASING_INELASTIC\" };",
1460
+ "go\u0000CONSTANT\u0000go.EASING_INEXPO\u0000": "const EASING_INEXPO: number & { readonly __brand: \"go.EASING_INEXPO\" };",
1461
+ "go\u0000CONSTANT\u0000go.EASING_INOUTBACK\u0000": "const EASING_INOUTBACK: number & { readonly __brand: \"go.EASING_INOUTBACK\" };",
1462
+ "go\u0000CONSTANT\u0000go.EASING_INOUTBOUNCE\u0000": "const EASING_INOUTBOUNCE: number & { readonly __brand: \"go.EASING_INOUTBOUNCE\" };",
1463
+ "go\u0000CONSTANT\u0000go.EASING_INOUTCIRC\u0000": "const EASING_INOUTCIRC: number & { readonly __brand: \"go.EASING_INOUTCIRC\" };",
1464
+ "go\u0000CONSTANT\u0000go.EASING_INOUTCUBIC\u0000": "const EASING_INOUTCUBIC: number & { readonly __brand: \"go.EASING_INOUTCUBIC\" };",
1465
+ "go\u0000CONSTANT\u0000go.EASING_INOUTELASTIC\u0000": "const EASING_INOUTELASTIC: number & { readonly __brand: \"go.EASING_INOUTELASTIC\" };",
1466
+ "go\u0000CONSTANT\u0000go.EASING_INOUTEXPO\u0000": "const EASING_INOUTEXPO: number & { readonly __brand: \"go.EASING_INOUTEXPO\" };",
1467
+ "go\u0000CONSTANT\u0000go.EASING_INOUTQUAD\u0000": "const EASING_INOUTQUAD: number & { readonly __brand: \"go.EASING_INOUTQUAD\" };",
1468
+ "go\u0000CONSTANT\u0000go.EASING_INOUTQUART\u0000": "const EASING_INOUTQUART: number & { readonly __brand: \"go.EASING_INOUTQUART\" };",
1469
+ "go\u0000CONSTANT\u0000go.EASING_INOUTQUINT\u0000": "const EASING_INOUTQUINT: number & { readonly __brand: \"go.EASING_INOUTQUINT\" };",
1470
+ "go\u0000CONSTANT\u0000go.EASING_INOUTSINE\u0000": "const EASING_INOUTSINE: number & { readonly __brand: \"go.EASING_INOUTSINE\" };",
1471
+ "go\u0000CONSTANT\u0000go.EASING_INQUAD\u0000": "const EASING_INQUAD: number & { readonly __brand: \"go.EASING_INQUAD\" };",
1472
+ "go\u0000CONSTANT\u0000go.EASING_INQUART\u0000": "const EASING_INQUART: number & { readonly __brand: \"go.EASING_INQUART\" };",
1473
+ "go\u0000CONSTANT\u0000go.EASING_INQUINT\u0000": "const EASING_INQUINT: number & { readonly __brand: \"go.EASING_INQUINT\" };",
1474
+ "go\u0000CONSTANT\u0000go.EASING_INSINE\u0000": "const EASING_INSINE: number & { readonly __brand: \"go.EASING_INSINE\" };",
1475
+ "go\u0000CONSTANT\u0000go.EASING_LINEAR\u0000": "const EASING_LINEAR: number & { readonly __brand: \"go.EASING_LINEAR\" };",
1476
+ "go\u0000CONSTANT\u0000go.EASING_OUTBACK\u0000": "const EASING_OUTBACK: number & { readonly __brand: \"go.EASING_OUTBACK\" };",
1477
+ "go\u0000CONSTANT\u0000go.EASING_OUTBOUNCE\u0000": "const EASING_OUTBOUNCE: number & { readonly __brand: \"go.EASING_OUTBOUNCE\" };",
1478
+ "go\u0000CONSTANT\u0000go.EASING_OUTCIRC\u0000": "const EASING_OUTCIRC: number & { readonly __brand: \"go.EASING_OUTCIRC\" };",
1479
+ "go\u0000CONSTANT\u0000go.EASING_OUTCUBIC\u0000": "const EASING_OUTCUBIC: number & { readonly __brand: \"go.EASING_OUTCUBIC\" };",
1480
+ "go\u0000CONSTANT\u0000go.EASING_OUTELASTIC\u0000": "const EASING_OUTELASTIC: number & { readonly __brand: \"go.EASING_OUTELASTIC\" };",
1481
+ "go\u0000CONSTANT\u0000go.EASING_OUTEXPO\u0000": "const EASING_OUTEXPO: number & { readonly __brand: \"go.EASING_OUTEXPO\" };",
1482
+ "go\u0000CONSTANT\u0000go.EASING_OUTINBACK\u0000": "const EASING_OUTINBACK: number & { readonly __brand: \"go.EASING_OUTINBACK\" };",
1483
+ "go\u0000CONSTANT\u0000go.EASING_OUTINBOUNCE\u0000": "const EASING_OUTINBOUNCE: number & { readonly __brand: \"go.EASING_OUTINBOUNCE\" };",
1484
+ "go\u0000CONSTANT\u0000go.EASING_OUTINCIRC\u0000": "const EASING_OUTINCIRC: number & { readonly __brand: \"go.EASING_OUTINCIRC\" };",
1485
+ "go\u0000CONSTANT\u0000go.EASING_OUTINCUBIC\u0000": "const EASING_OUTINCUBIC: number & { readonly __brand: \"go.EASING_OUTINCUBIC\" };",
1486
+ "go\u0000CONSTANT\u0000go.EASING_OUTINELASTIC\u0000": "const EASING_OUTINELASTIC: number & { readonly __brand: \"go.EASING_OUTINELASTIC\" };",
1487
+ "go\u0000CONSTANT\u0000go.EASING_OUTINEXPO\u0000": "const EASING_OUTINEXPO: number & { readonly __brand: \"go.EASING_OUTINEXPO\" };",
1488
+ "go\u0000CONSTANT\u0000go.EASING_OUTINQUAD\u0000": "const EASING_OUTINQUAD: number & { readonly __brand: \"go.EASING_OUTINQUAD\" };",
1489
+ "go\u0000CONSTANT\u0000go.EASING_OUTINQUART\u0000": "const EASING_OUTINQUART: number & { readonly __brand: \"go.EASING_OUTINQUART\" };",
1490
+ "go\u0000CONSTANT\u0000go.EASING_OUTINQUINT\u0000": "const EASING_OUTINQUINT: number & { readonly __brand: \"go.EASING_OUTINQUINT\" };",
1491
+ "go\u0000CONSTANT\u0000go.EASING_OUTINSINE\u0000": "const EASING_OUTINSINE: number & { readonly __brand: \"go.EASING_OUTINSINE\" };",
1492
+ "go\u0000CONSTANT\u0000go.EASING_OUTQUAD\u0000": "const EASING_OUTQUAD: number & { readonly __brand: \"go.EASING_OUTQUAD\" };",
1493
+ "go\u0000CONSTANT\u0000go.EASING_OUTQUART\u0000": "const EASING_OUTQUART: number & { readonly __brand: \"go.EASING_OUTQUART\" };",
1494
+ "go\u0000CONSTANT\u0000go.EASING_OUTQUINT\u0000": "const EASING_OUTQUINT: number & { readonly __brand: \"go.EASING_OUTQUINT\" };",
1495
+ "go\u0000CONSTANT\u0000go.EASING_OUTSINE\u0000": "const EASING_OUTSINE: number & { readonly __brand: \"go.EASING_OUTSINE\" };",
1496
+ "go\u0000CONSTANT\u0000go.PLAYBACK_LOOP_BACKWARD\u0000": "const PLAYBACK_LOOP_BACKWARD: number & { readonly __brand: \"go.PLAYBACK_LOOP_BACKWARD\" };",
1497
+ "go\u0000CONSTANT\u0000go.PLAYBACK_LOOP_FORWARD\u0000": "const PLAYBACK_LOOP_FORWARD: number & { readonly __brand: \"go.PLAYBACK_LOOP_FORWARD\" };",
1498
+ "go\u0000CONSTANT\u0000go.PLAYBACK_LOOP_PINGPONG\u0000": "const PLAYBACK_LOOP_PINGPONG: number & { readonly __brand: \"go.PLAYBACK_LOOP_PINGPONG\" };",
1499
+ "go\u0000CONSTANT\u0000go.PLAYBACK_NONE\u0000": "const PLAYBACK_NONE: number & { readonly __brand: \"go.PLAYBACK_NONE\" };",
1500
+ "go\u0000CONSTANT\u0000go.PLAYBACK_ONCE_BACKWARD\u0000": "const PLAYBACK_ONCE_BACKWARD: number & { readonly __brand: \"go.PLAYBACK_ONCE_BACKWARD\" };",
1501
+ "go\u0000CONSTANT\u0000go.PLAYBACK_ONCE_FORWARD\u0000": "const PLAYBACK_ONCE_FORWARD: number & { readonly __brand: \"go.PLAYBACK_ONCE_FORWARD\" };",
1502
+ "go\u0000CONSTANT\u0000go.PLAYBACK_ONCE_PINGPONG\u0000": "const PLAYBACK_ONCE_PINGPONG: number & { readonly __brand: \"go.PLAYBACK_ONCE_PINGPONG\" };",
1503
+ "go\u0000FUNCTION\u0000final\u0000[{\"types\":[\"userdata\"],\"isOptional\":false}]->[]": "function final(self: Opaque<\"userdata\">): void;",
1504
+ "go\u0000FUNCTION\u0000fixed_update\u0000[{\"types\":[\"userdata\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function fixed_update(self: Opaque<\"userdata\">, dt: number): void;",
1505
+ "go\u0000FUNCTION\u0000go.animate\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"go.PLAYBACK_LOOP_BACKWARD\",\"go.PLAYBACK_LOOP_FORWARD\",\"go.PLAYBACK_LOOP_PINGPONG\",\"go.PLAYBACK_ONCE_BACKWARD\",\"go.PLAYBACK_ONCE_FORWARD\",\"go.PLAYBACK_ONCE_PINGPONG\"],\"isOptional\":false},{\"types\":[\"number\",\"quaternion\",\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"go.EASING_INBACK\",\"go.EASING_INBOUNCE\",\"go.EASING_INCIRC\",\"go.EASING_INCUBIC\",\"go.EASING_INELASTIC\",\"go.EASING_INEXPO\",\"go.EASING_INOUTBACK\",\"go.EASING_INOUTBOUNCE\",\"go.EASING_INOUTCIRC\",\"go.EASING_INOUTCUBIC\",\"go.EASING_INOUTELASTIC\",\"go.EASING_INOUTEXPO\",\"go.EASING_INOUTQUAD\",\"go.EASING_INOUTQUART\",\"go.EASING_INOUTQUINT\",\"go.EASING_INOUTSINE\",\"go.EASING_INQUAD\",\"go.EASING_INQUART\",\"go.EASING_INQUINT\",\"go.EASING_INSINE\",\"go.EASING_LINEAR\",\"go.EASING_OUTBACK\",\"go.EASING_OUTBOUNCE\",\"go.EASING_OUTCIRC\",\"go.EASING_OUTCUBIC\",\"go.EASING_OUTELASTIC\",\"go.EASING_OUTEXPO\",\"go.EASING_OUTINBACK\",\"go.EASING_OUTINBOUNCE\",\"go.EASING_OUTINCIRC\",\"go.EASING_OUTINCUBIC\",\"go.EASING_OUTINELASTIC\",\"go.EASING_OUTINEXPO\",\"go.EASING_OUTINQUAD\",\"go.EASING_OUTINQUART\",\"go.EASING_OUTINQUINT\",\"go.EASING_OUTINSINE\",\"go.EASING_OUTQUAD\",\"go.EASING_OUTQUART\",\"go.EASING_OUTQUINT\",\"go.EASING_OUTSINE\",\"vector\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true},{\"types\":[\"function(self, url, property)\"],\"isOptional\":true}]->[]": "function animate(url: string | Hash | Url, property: string | Hash, playback: number & { readonly __brand: \"go.PLAYBACK_ONCE_FORWARD\" } | number & { readonly __brand: \"go.PLAYBACK_ONCE_BACKWARD\" } | number & { readonly __brand: \"go.PLAYBACK_ONCE_PINGPONG\" } | number & { readonly __brand: \"go.PLAYBACK_LOOP_FORWARD\" } | number & { readonly __brand: \"go.PLAYBACK_LOOP_BACKWARD\" } | number & { readonly __brand: \"go.PLAYBACK_LOOP_PINGPONG\" }, to: number | Vector3 | Vector4 | Quaternion, easing: Vector | number & { readonly __brand: \"go.EASING_INBACK\" } | number & { readonly __brand: \"go.EASING_INBOUNCE\" } | number & { readonly __brand: \"go.EASING_INCIRC\" } | number & { readonly __brand: \"go.EASING_INCUBIC\" } | number & { readonly __brand: \"go.EASING_INELASTIC\" } | number & { readonly __brand: \"go.EASING_INEXPO\" } | number & { readonly __brand: \"go.EASING_INOUTBACK\" } | number & { readonly __brand: \"go.EASING_INOUTBOUNCE\" } | number & { readonly __brand: \"go.EASING_INOUTCIRC\" } | number & { readonly __brand: \"go.EASING_INOUTCUBIC\" } | number & { readonly __brand: \"go.EASING_INOUTELASTIC\" } | number & { readonly __brand: \"go.EASING_INOUTEXPO\" } | number & { readonly __brand: \"go.EASING_INOUTQUAD\" } | number & { readonly __brand: \"go.EASING_INOUTQUART\" } | number & { readonly __brand: \"go.EASING_INOUTQUINT\" } | number & { readonly __brand: \"go.EASING_INOUTSINE\" } | number & { readonly __brand: \"go.EASING_INQUAD\" } | number & { readonly __brand: \"go.EASING_INQUART\" } | number & { readonly __brand: \"go.EASING_INQUINT\" } | number & { readonly __brand: \"go.EASING_INSINE\" } | number & { readonly __brand: \"go.EASING_LINEAR\" } | number & { readonly __brand: \"go.EASING_OUTBACK\" } | number & { readonly __brand: \"go.EASING_OUTBOUNCE\" } | number & { readonly __brand: \"go.EASING_OUTCIRC\" } | number & { readonly __brand: \"go.EASING_OUTCUBIC\" } | number & { readonly __brand: \"go.EASING_OUTELASTIC\" } | number & { readonly __brand: \"go.EASING_OUTEXPO\" } | number & { readonly __brand: \"go.EASING_OUTINBACK\" } | number & { readonly __brand: \"go.EASING_OUTINBOUNCE\" } | number & { readonly __brand: \"go.EASING_OUTINCIRC\" } | number & { readonly __brand: \"go.EASING_OUTINCUBIC\" } | number & { readonly __brand: \"go.EASING_OUTINELASTIC\" } | number & { readonly __brand: \"go.EASING_OUTINEXPO\" } | number & { readonly __brand: \"go.EASING_OUTINQUAD\" } | number & { readonly __brand: \"go.EASING_OUTINQUART\" } | number & { readonly __brand: \"go.EASING_OUTINQUINT\" } | number & { readonly __brand: \"go.EASING_OUTINSINE\" } | number & { readonly __brand: \"go.EASING_OUTQUAD\" } | number & { readonly __brand: \"go.EASING_OUTQUART\" } | number & { readonly __brand: \"go.EASING_OUTQUINT\" } | number & { readonly __brand: \"go.EASING_OUTSINE\" }, duration: number, delay?: number, complete_function?: (self: unknown, url: unknown, property: unknown) => void): void;",
1506
+ "go\u0000FUNCTION\u0000go.cancel_animations\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":true}]->[]": "function cancel_animations(url: string | Hash | Url, property?: string | Hash): void;",
1507
+ "go\u0000FUNCTION\u0000go.delete\u0000[{\"types\":[\"hash\",\"string\",\"table\",\"url\"],\"isOptional\":true},{\"types\":[\"boolean\"],\"isOptional\":true}]->[]": "function _delete(id?: string | Hash | Url | (string | Hash | Url)[], recursive?: boolean): void;",
1508
+ "go\u0000FUNCTION\u0000go.exists\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function exists(url: string | Hash | Url): boolean;",
1509
+ "go\u0000FUNCTION\u0000go.get_id\u0000[{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_id(path?: string): Hash;",
1510
+ "go\u0000FUNCTION\u0000go.get_parent\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"hash\",\"nil\"],\"isOptional\":false}]": "function get_parent(id?: string | Hash | Url): Hash | unknown;",
1511
+ "go\u0000FUNCTION\u0000go.get_position\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_position(id?: string | Hash | Url): Vector3;",
1512
+ "go\u0000FUNCTION\u0000go.get_rotation\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function get_rotation(id?: string | Hash | Url): Quaternion;",
1513
+ "go\u0000FUNCTION\u0000go.get_scale\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_scale(id?: string | Hash | Url): Vector3;",
1514
+ "go\u0000FUNCTION\u0000go.get_scale_uniform\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_scale_uniform(id?: string | Hash | Url): number;",
1515
+ "go\u0000FUNCTION\u0000go.get_world_position\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_world_position(id?: string | Hash | Url): Vector3;",
1516
+ "go\u0000FUNCTION\u0000go.get_world_rotation\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function get_world_rotation(id?: string | Hash | Url): Quaternion;",
1517
+ "go\u0000FUNCTION\u0000go.get_world_scale\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_world_scale(id?: string | Hash | Url): Vector3;",
1518
+ "go\u0000FUNCTION\u0000go.get_world_scale_uniform\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_world_scale_uniform(id?: string | Hash | Url): number;",
1519
+ "go\u0000FUNCTION\u0000go.get_world_transform\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function get_world_transform(id?: string | Hash | Url): Matrix4;",
1520
+ "go\u0000FUNCTION\u0000go.set_parent\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true},{\"types\":[\"boolean\"],\"isOptional\":true}]->[]": "function set_parent(id?: string | Hash | Url, parent_id?: string | Hash | Url, keep_world_transform?: boolean): void;",
1521
+ "go\u0000FUNCTION\u0000go.set_position\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[]": "function set_position(position: Vector3, id?: string | Hash | Url): void;",
1522
+ "go\u0000FUNCTION\u0000go.set_rotation\u0000[{\"types\":[\"quaternion\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[]": "function set_rotation(rotation: Quaternion, id?: string | Hash | Url): void;",
1523
+ "go\u0000FUNCTION\u0000go.set_scale\u0000[{\"types\":[\"number\",\"vector3\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[]": "function set_scale(scale: number | Vector3, id?: string | Hash | Url): void;",
1524
+ "go\u0000FUNCTION\u0000go.set_scale_xy\u0000[{\"types\":[\"number\",\"vector3\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[]": "function set_scale_xy(scale: number | Vector3, id?: string | Hash | Url): void;",
1525
+ "go\u0000FUNCTION\u0000go.update_world_transform\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":true}]->[]": "function update_world_transform(id?: string | Hash | Url): void;",
1526
+ "go\u0000FUNCTION\u0000go.world_to_local_position\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function world_to_local_position(position: Vector3, url: string | Hash | Url): Vector3;",
1527
+ "go\u0000FUNCTION\u0000go.world_to_local_transform\u0000[{\"types\":[\"matrix4\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function world_to_local_transform(transformation: Matrix4, url: string | Hash | Url): Matrix4;",
1528
+ "go\u0000FUNCTION\u0000init\u0000[{\"types\":[\"userdata\"],\"isOptional\":false}]->[]": "function init(self: Opaque<\"userdata\">): void;",
1529
+ "go\u0000FUNCTION\u0000late_update\u0000[{\"types\":[\"userdata\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function late_update(self: Opaque<\"userdata\">, dt: number): void;",
1530
+ "go\u0000FUNCTION\u0000on_input\u0000[{\"types\":[\"userdata\"],\"isOptional\":false},{\"types\":[\"hash\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"boolean\",\"nil\"],\"isOptional\":false}]": "function on_input(self: Opaque<\"userdata\">, action_id: Hash, action: { value?: number; pressed?: boolean; released?: boolean; repeated?: boolean; x?: number; y?: number; screen_x?: number; screen_y?: number; dx?: number; dy?: number; screen_dx?: number; screen_dy?: number; gamepad?: number; gamepad_axis?: Vector3; touch?: { id?: number; pressed?: boolean; released?: boolean; tap_count?: number; x?: number; y?: number; dx?: number; dy?: number; acc_x?: number; acc_y?: number; acc_z?: number }[]; text?: string }): boolean | unknown;",
1531
+ "go\u0000FUNCTION\u0000on_message\u0000[{\"types\":[\"userdata\"],\"isOptional\":false},{\"types\":[\"hash\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"url\"],\"isOptional\":false}]->[]": "function on_message(self: Opaque<\"userdata\">, message_id: Hash, message: Record<string | number, unknown>, sender: Url): void;",
1532
+ "go\u0000FUNCTION\u0000on_reload\u0000[{\"types\":[\"userdata\"],\"isOptional\":false}]->[]": "function on_reload(self: Opaque<\"userdata\">): void;",
1533
+ "go\u0000FUNCTION\u0000update\u0000[{\"types\":[\"userdata\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function update(self: Opaque<\"userdata\">, dt: number): void;",
1534
+ "go\u0000PROPERTY\u0000euler\u0000": "euler: Vector3;",
1535
+ "go\u0000PROPERTY\u0000position\u0000": "position: Vector3;",
1536
+ "go\u0000PROPERTY\u0000rotation\u0000": "rotation: Quaternion;",
1537
+ "go\u0000PROPERTY\u0000scale\u0000": "scale: number;",
1538
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_CONSTANT_ALPHA\u0000": "const BLEND_FACTOR_CONSTANT_ALPHA: number & { readonly __brand: \"graphics.BLEND_FACTOR_CONSTANT_ALPHA\" };",
1539
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_CONSTANT_COLOR\u0000": "const BLEND_FACTOR_CONSTANT_COLOR: number & { readonly __brand: \"graphics.BLEND_FACTOR_CONSTANT_COLOR\" };",
1540
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_DST_ALPHA\u0000": "const BLEND_FACTOR_DST_ALPHA: number & { readonly __brand: \"graphics.BLEND_FACTOR_DST_ALPHA\" };",
1541
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_DST_COLOR\u0000": "const BLEND_FACTOR_DST_COLOR: number & { readonly __brand: \"graphics.BLEND_FACTOR_DST_COLOR\" };",
1542
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_ONE\u0000": "const BLEND_FACTOR_ONE: number & { readonly __brand: \"graphics.BLEND_FACTOR_ONE\" };",
1543
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA\u0000": "const BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA: number & { readonly __brand: \"graphics.BLEND_FACTOR_ONE_MINUS_CONSTANT_ALPHA\" };",
1544
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR\u0000": "const BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR: number & { readonly __brand: \"graphics.BLEND_FACTOR_ONE_MINUS_CONSTANT_COLOR\" };",
1545
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_ONE_MINUS_DST_ALPHA\u0000": "const BLEND_FACTOR_ONE_MINUS_DST_ALPHA: number & { readonly __brand: \"graphics.BLEND_FACTOR_ONE_MINUS_DST_ALPHA\" };",
1546
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_ONE_MINUS_DST_COLOR\u0000": "const BLEND_FACTOR_ONE_MINUS_DST_COLOR: number & { readonly __brand: \"graphics.BLEND_FACTOR_ONE_MINUS_DST_COLOR\" };",
1547
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_ONE_MINUS_SRC_ALPHA\u0000": "const BLEND_FACTOR_ONE_MINUS_SRC_ALPHA: number & { readonly __brand: \"graphics.BLEND_FACTOR_ONE_MINUS_SRC_ALPHA\" };",
1548
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_ONE_MINUS_SRC_COLOR\u0000": "const BLEND_FACTOR_ONE_MINUS_SRC_COLOR: number & { readonly __brand: \"graphics.BLEND_FACTOR_ONE_MINUS_SRC_COLOR\" };",
1549
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_SRC_ALPHA\u0000": "const BLEND_FACTOR_SRC_ALPHA: number & { readonly __brand: \"graphics.BLEND_FACTOR_SRC_ALPHA\" };",
1550
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_SRC_ALPHA_SATURATE\u0000": "const BLEND_FACTOR_SRC_ALPHA_SATURATE: number & { readonly __brand: \"graphics.BLEND_FACTOR_SRC_ALPHA_SATURATE\" };",
1551
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_SRC_COLOR\u0000": "const BLEND_FACTOR_SRC_COLOR: number & { readonly __brand: \"graphics.BLEND_FACTOR_SRC_COLOR\" };",
1552
+ "graphics\u0000CONSTANT\u0000graphics.BLEND_FACTOR_ZERO\u0000": "const BLEND_FACTOR_ZERO: number & { readonly __brand: \"graphics.BLEND_FACTOR_ZERO\" };",
1553
+ "graphics\u0000CONSTANT\u0000graphics.BUFFER_TYPE_COLOR0_BIT\u0000": "const BUFFER_TYPE_COLOR0_BIT: number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR0_BIT\" };",
1554
+ "graphics\u0000CONSTANT\u0000graphics.BUFFER_TYPE_COLOR1_BIT\u0000": "const BUFFER_TYPE_COLOR1_BIT: number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR1_BIT\" };",
1555
+ "graphics\u0000CONSTANT\u0000graphics.BUFFER_TYPE_COLOR2_BIT\u0000": "const BUFFER_TYPE_COLOR2_BIT: number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR2_BIT\" };",
1556
+ "graphics\u0000CONSTANT\u0000graphics.BUFFER_TYPE_COLOR3_BIT\u0000": "const BUFFER_TYPE_COLOR3_BIT: number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR3_BIT\" };",
1557
+ "graphics\u0000CONSTANT\u0000graphics.BUFFER_TYPE_DEPTH_BIT\u0000": "const BUFFER_TYPE_DEPTH_BIT: number & { readonly __brand: \"graphics.BUFFER_TYPE_DEPTH_BIT\" };",
1558
+ "graphics\u0000CONSTANT\u0000graphics.BUFFER_TYPE_STENCIL_BIT\u0000": "const BUFFER_TYPE_STENCIL_BIT: number & { readonly __brand: \"graphics.BUFFER_TYPE_STENCIL_BIT\" };",
1559
+ "graphics\u0000CONSTANT\u0000graphics.COMPARE_FUNC_ALWAYS\u0000": "const COMPARE_FUNC_ALWAYS: number & { readonly __brand: \"graphics.COMPARE_FUNC_ALWAYS\" };",
1560
+ "graphics\u0000CONSTANT\u0000graphics.COMPARE_FUNC_EQUAL\u0000": "const COMPARE_FUNC_EQUAL: number & { readonly __brand: \"graphics.COMPARE_FUNC_EQUAL\" };",
1561
+ "graphics\u0000CONSTANT\u0000graphics.COMPARE_FUNC_GEQUAL\u0000": "const COMPARE_FUNC_GEQUAL: number & { readonly __brand: \"graphics.COMPARE_FUNC_GEQUAL\" };",
1562
+ "graphics\u0000CONSTANT\u0000graphics.COMPARE_FUNC_GREATER\u0000": "const COMPARE_FUNC_GREATER: number & { readonly __brand: \"graphics.COMPARE_FUNC_GREATER\" };",
1563
+ "graphics\u0000CONSTANT\u0000graphics.COMPARE_FUNC_LEQUAL\u0000": "const COMPARE_FUNC_LEQUAL: number & { readonly __brand: \"graphics.COMPARE_FUNC_LEQUAL\" };",
1564
+ "graphics\u0000CONSTANT\u0000graphics.COMPARE_FUNC_LESS\u0000": "const COMPARE_FUNC_LESS: number & { readonly __brand: \"graphics.COMPARE_FUNC_LESS\" };",
1565
+ "graphics\u0000CONSTANT\u0000graphics.COMPARE_FUNC_NEVER\u0000": "const COMPARE_FUNC_NEVER: number & { readonly __brand: \"graphics.COMPARE_FUNC_NEVER\" };",
1566
+ "graphics\u0000CONSTANT\u0000graphics.COMPARE_FUNC_NOTEQUAL\u0000": "const COMPARE_FUNC_NOTEQUAL: number & { readonly __brand: \"graphics.COMPARE_FUNC_NOTEQUAL\" };",
1567
+ "graphics\u0000CONSTANT\u0000graphics.COMPRESSION_TYPE_BASIS_ETC1S\u0000": "const COMPRESSION_TYPE_BASIS_ETC1S: number & { readonly __brand: \"graphics.COMPRESSION_TYPE_BASIS_ETC1S\" };",
1568
+ "graphics\u0000CONSTANT\u0000graphics.COMPRESSION_TYPE_BASIS_UASTC\u0000": "const COMPRESSION_TYPE_BASIS_UASTC: number & { readonly __brand: \"graphics.COMPRESSION_TYPE_BASIS_UASTC\" };",
1569
+ "graphics\u0000CONSTANT\u0000graphics.COMPRESSION_TYPE_DEFAULT\u0000": "const COMPRESSION_TYPE_DEFAULT: number & { readonly __brand: \"graphics.COMPRESSION_TYPE_DEFAULT\" };",
1570
+ "graphics\u0000CONSTANT\u0000graphics.COMPRESSION_TYPE_WEBP\u0000": "const COMPRESSION_TYPE_WEBP: number & { readonly __brand: \"graphics.COMPRESSION_TYPE_WEBP\" };",
1571
+ "graphics\u0000CONSTANT\u0000graphics.COMPRESSION_TYPE_WEBP_LOSSY\u0000": "const COMPRESSION_TYPE_WEBP_LOSSY: number & { readonly __brand: \"graphics.COMPRESSION_TYPE_WEBP_LOSSY\" };",
1572
+ "graphics\u0000CONSTANT\u0000graphics.FACE_TYPE_BACK\u0000": "const FACE_TYPE_BACK: number & { readonly __brand: \"graphics.FACE_TYPE_BACK\" };",
1573
+ "graphics\u0000CONSTANT\u0000graphics.FACE_TYPE_FRONT\u0000": "const FACE_TYPE_FRONT: number & { readonly __brand: \"graphics.FACE_TYPE_FRONT\" };",
1574
+ "graphics\u0000CONSTANT\u0000graphics.FACE_TYPE_FRONT_AND_BACK\u0000": "const FACE_TYPE_FRONT_AND_BACK: number & { readonly __brand: \"graphics.FACE_TYPE_FRONT_AND_BACK\" };",
1575
+ "graphics\u0000CONSTANT\u0000graphics.STATE_ALPHA_TEST\u0000": "const STATE_ALPHA_TEST: number & { readonly __brand: \"graphics.STATE_ALPHA_TEST\" };",
1576
+ "graphics\u0000CONSTANT\u0000graphics.STATE_ALPHA_TEST_SUPPORTED\u0000": "const STATE_ALPHA_TEST_SUPPORTED: number & { readonly __brand: \"graphics.STATE_ALPHA_TEST_SUPPORTED\" };",
1577
+ "graphics\u0000CONSTANT\u0000graphics.STATE_BLEND\u0000": "const STATE_BLEND: number & { readonly __brand: \"graphics.STATE_BLEND\" };",
1578
+ "graphics\u0000CONSTANT\u0000graphics.STATE_CULL_FACE\u0000": "const STATE_CULL_FACE: number & { readonly __brand: \"graphics.STATE_CULL_FACE\" };",
1579
+ "graphics\u0000CONSTANT\u0000graphics.STATE_DEPTH_TEST\u0000": "const STATE_DEPTH_TEST: number & { readonly __brand: \"graphics.STATE_DEPTH_TEST\" };",
1580
+ "graphics\u0000CONSTANT\u0000graphics.STATE_POLYGON_OFFSET_FILL\u0000": "const STATE_POLYGON_OFFSET_FILL: number & { readonly __brand: \"graphics.STATE_POLYGON_OFFSET_FILL\" };",
1581
+ "graphics\u0000CONSTANT\u0000graphics.STATE_SCISSOR_TEST\u0000": "const STATE_SCISSOR_TEST: number & { readonly __brand: \"graphics.STATE_SCISSOR_TEST\" };",
1582
+ "graphics\u0000CONSTANT\u0000graphics.STATE_STENCIL_TEST\u0000": "const STATE_STENCIL_TEST: number & { readonly __brand: \"graphics.STATE_STENCIL_TEST\" };",
1583
+ "graphics\u0000CONSTANT\u0000graphics.STENCIL_OP_DECR\u0000": "const STENCIL_OP_DECR: number & { readonly __brand: \"graphics.STENCIL_OP_DECR\" };",
1584
+ "graphics\u0000CONSTANT\u0000graphics.STENCIL_OP_DECR_WRAP\u0000": "const STENCIL_OP_DECR_WRAP: number & { readonly __brand: \"graphics.STENCIL_OP_DECR_WRAP\" };",
1585
+ "graphics\u0000CONSTANT\u0000graphics.STENCIL_OP_INCR\u0000": "const STENCIL_OP_INCR: number & { readonly __brand: \"graphics.STENCIL_OP_INCR\" };",
1586
+ "graphics\u0000CONSTANT\u0000graphics.STENCIL_OP_INCR_WRAP\u0000": "const STENCIL_OP_INCR_WRAP: number & { readonly __brand: \"graphics.STENCIL_OP_INCR_WRAP\" };",
1587
+ "graphics\u0000CONSTANT\u0000graphics.STENCIL_OP_INVERT\u0000": "const STENCIL_OP_INVERT: number & { readonly __brand: \"graphics.STENCIL_OP_INVERT\" };",
1588
+ "graphics\u0000CONSTANT\u0000graphics.STENCIL_OP_KEEP\u0000": "const STENCIL_OP_KEEP: number & { readonly __brand: \"graphics.STENCIL_OP_KEEP\" };",
1589
+ "graphics\u0000CONSTANT\u0000graphics.STENCIL_OP_REPLACE\u0000": "const STENCIL_OP_REPLACE: number & { readonly __brand: \"graphics.STENCIL_OP_REPLACE\" };",
1590
+ "graphics\u0000CONSTANT\u0000graphics.STENCIL_OP_ZERO\u0000": "const STENCIL_OP_ZERO: number & { readonly __brand: \"graphics.STENCIL_OP_ZERO\" };",
1591
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FILTER_DEFAULT\u0000": "const TEXTURE_FILTER_DEFAULT: number & { readonly __brand: \"graphics.TEXTURE_FILTER_DEFAULT\" };",
1592
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FILTER_LINEAR\u0000": "const TEXTURE_FILTER_LINEAR: number & { readonly __brand: \"graphics.TEXTURE_FILTER_LINEAR\" };",
1593
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FILTER_LINEAR_MIPMAP_LINEAR\u0000": "const TEXTURE_FILTER_LINEAR_MIPMAP_LINEAR: number & { readonly __brand: \"graphics.TEXTURE_FILTER_LINEAR_MIPMAP_LINEAR\" };",
1594
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FILTER_LINEAR_MIPMAP_NEAREST\u0000": "const TEXTURE_FILTER_LINEAR_MIPMAP_NEAREST: number & { readonly __brand: \"graphics.TEXTURE_FILTER_LINEAR_MIPMAP_NEAREST\" };",
1595
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FILTER_NEAREST\u0000": "const TEXTURE_FILTER_NEAREST: number & { readonly __brand: \"graphics.TEXTURE_FILTER_NEAREST\" };",
1596
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FILTER_NEAREST_MIPMAP_LINEAR\u0000": "const TEXTURE_FILTER_NEAREST_MIPMAP_LINEAR: number & { readonly __brand: \"graphics.TEXTURE_FILTER_NEAREST_MIPMAP_LINEAR\" };",
1597
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FILTER_NEAREST_MIPMAP_NEAREST\u0000": "const TEXTURE_FILTER_NEAREST_MIPMAP_NEAREST: number & { readonly __brand: \"graphics.TEXTURE_FILTER_NEAREST_MIPMAP_NEAREST\" };",
1598
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_BGRA8U\u0000": "const TEXTURE_FORMAT_BGRA8U: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_BGRA8U\" };",
1599
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_DEPTH\u0000": "const TEXTURE_FORMAT_DEPTH: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_DEPTH\" };",
1600
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_LUMINANCE\u0000": "const TEXTURE_FORMAT_LUMINANCE: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_LUMINANCE\" };",
1601
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_LUMINANCE_ALPHA\u0000": "const TEXTURE_FORMAT_LUMINANCE_ALPHA: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_LUMINANCE_ALPHA\" };",
1602
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_R16F\u0000": "const TEXTURE_FORMAT_R16F: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_R16F\" };",
1603
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_R32F\u0000": "const TEXTURE_FORMAT_R32F: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_R32F\" };",
1604
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_R32UI\u0000": "const TEXTURE_FORMAT_R32UI: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_R32UI\" };",
1605
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RG16F\u0000": "const TEXTURE_FORMAT_RG16F: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RG16F\" };",
1606
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RG32F\u0000": "const TEXTURE_FORMAT_RG32F: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RG32F\" };",
1607
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGB\u0000": "const TEXTURE_FORMAT_RGB: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGB\" };",
1608
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGB16F\u0000": "const TEXTURE_FORMAT_RGB16F: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGB16F\" };",
1609
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGB32F\u0000": "const TEXTURE_FORMAT_RGB32F: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGB32F\" };",
1610
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA\u0000": "const TEXTURE_FORMAT_RGBA: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA\" };",
1611
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA16F\u0000": "const TEXTURE_FORMAT_RGBA16F: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA16F\" };",
1612
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA32F\u0000": "const TEXTURE_FORMAT_RGBA32F: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA32F\" };",
1613
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA32UI\u0000": "const TEXTURE_FORMAT_RGBA32UI: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA32UI\" };",
1614
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA_16BPP\u0000": "const TEXTURE_FORMAT_RGBA_16BPP: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA_16BPP\" };",
1615
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA_ASTC_4X4\u0000": "const TEXTURE_FORMAT_RGBA_ASTC_4X4: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA_ASTC_4X4\" };",
1616
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA_BC3\u0000": "const TEXTURE_FORMAT_RGBA_BC3: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA_BC3\" };",
1617
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA_BC7\u0000": "const TEXTURE_FORMAT_RGBA_BC7: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA_BC7\" };",
1618
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA_ETC2\u0000": "const TEXTURE_FORMAT_RGBA_ETC2: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA_ETC2\" };",
1619
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA_PVRTC_2BPPV1\u0000": "const TEXTURE_FORMAT_RGBA_PVRTC_2BPPV1: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA_PVRTC_2BPPV1\" };",
1620
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGBA_PVRTC_4BPPV1\u0000": "const TEXTURE_FORMAT_RGBA_PVRTC_4BPPV1: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGBA_PVRTC_4BPPV1\" };",
1621
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGB_16BPP\u0000": "const TEXTURE_FORMAT_RGB_16BPP: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGB_16BPP\" };",
1622
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGB_BC1\u0000": "const TEXTURE_FORMAT_RGB_BC1: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGB_BC1\" };",
1623
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGB_ETC1\u0000": "const TEXTURE_FORMAT_RGB_ETC1: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGB_ETC1\" };",
1624
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGB_PVRTC_2BPPV1\u0000": "const TEXTURE_FORMAT_RGB_PVRTC_2BPPV1: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGB_PVRTC_2BPPV1\" };",
1625
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RGB_PVRTC_4BPPV1\u0000": "const TEXTURE_FORMAT_RGB_PVRTC_4BPPV1: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RGB_PVRTC_4BPPV1\" };",
1626
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RG_BC5\u0000": "const TEXTURE_FORMAT_RG_BC5: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RG_BC5\" };",
1627
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_RG_ETC2\u0000": "const TEXTURE_FORMAT_RG_ETC2: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_RG_ETC2\" };",
1628
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_R_BC4\u0000": "const TEXTURE_FORMAT_R_BC4: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_R_BC4\" };",
1629
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_R_ETC2\u0000": "const TEXTURE_FORMAT_R_ETC2: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_R_ETC2\" };",
1630
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_FORMAT_STENCIL\u0000": "const TEXTURE_FORMAT_STENCIL: number & { readonly __brand: \"graphics.TEXTURE_FORMAT_STENCIL\" };",
1631
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_TYPE_2D\u0000": "const TEXTURE_TYPE_2D: number & { readonly __brand: \"graphics.TEXTURE_TYPE_2D\" };",
1632
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_TYPE_2D_ARRAY\u0000": "const TEXTURE_TYPE_2D_ARRAY: number & { readonly __brand: \"graphics.TEXTURE_TYPE_2D_ARRAY\" };",
1633
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_TYPE_3D\u0000": "const TEXTURE_TYPE_3D: number & { readonly __brand: \"graphics.TEXTURE_TYPE_3D\" };",
1634
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_TYPE_CUBE_MAP\u0000": "const TEXTURE_TYPE_CUBE_MAP: number & { readonly __brand: \"graphics.TEXTURE_TYPE_CUBE_MAP\" };",
1635
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_TYPE_IMAGE_2D\u0000": "const TEXTURE_TYPE_IMAGE_2D: number & { readonly __brand: \"graphics.TEXTURE_TYPE_IMAGE_2D\" };",
1636
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_TYPE_IMAGE_3D\u0000": "const TEXTURE_TYPE_IMAGE_3D: number & { readonly __brand: \"graphics.TEXTURE_TYPE_IMAGE_3D\" };",
1637
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_USAGE_FLAG_COLOR\u0000": "const TEXTURE_USAGE_FLAG_COLOR: number & { readonly __brand: \"graphics.TEXTURE_USAGE_FLAG_COLOR\" };",
1638
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_USAGE_FLAG_INPUT\u0000": "const TEXTURE_USAGE_FLAG_INPUT: number & { readonly __brand: \"graphics.TEXTURE_USAGE_FLAG_INPUT\" };",
1639
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_USAGE_FLAG_MEMORYLESS\u0000": "const TEXTURE_USAGE_FLAG_MEMORYLESS: number & { readonly __brand: \"graphics.TEXTURE_USAGE_FLAG_MEMORYLESS\" };",
1640
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_USAGE_FLAG_SAMPLE\u0000": "const TEXTURE_USAGE_FLAG_SAMPLE: number & { readonly __brand: \"graphics.TEXTURE_USAGE_FLAG_SAMPLE\" };",
1641
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_USAGE_FLAG_STORAGE\u0000": "const TEXTURE_USAGE_FLAG_STORAGE: number & { readonly __brand: \"graphics.TEXTURE_USAGE_FLAG_STORAGE\" };",
1642
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_WRAP_CLAMP_TO_BORDER\u0000": "const TEXTURE_WRAP_CLAMP_TO_BORDER: number & { readonly __brand: \"graphics.TEXTURE_WRAP_CLAMP_TO_BORDER\" };",
1643
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_WRAP_CLAMP_TO_EDGE\u0000": "const TEXTURE_WRAP_CLAMP_TO_EDGE: number & { readonly __brand: \"graphics.TEXTURE_WRAP_CLAMP_TO_EDGE\" };",
1644
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_WRAP_MIRRORED_REPEAT\u0000": "const TEXTURE_WRAP_MIRRORED_REPEAT: number & { readonly __brand: \"graphics.TEXTURE_WRAP_MIRRORED_REPEAT\" };",
1645
+ "graphics\u0000CONSTANT\u0000graphics.TEXTURE_WRAP_REPEAT\u0000": "const TEXTURE_WRAP_REPEAT: number & { readonly __brand: \"graphics.TEXTURE_WRAP_REPEAT\" };",
1646
+ "gui\u0000CONSTANT\u0000gui.ADJUST_FIT\u0000": "const ADJUST_FIT: number & { readonly __brand: \"gui.ADJUST_FIT\" };",
1647
+ "gui\u0000CONSTANT\u0000gui.ADJUST_STRETCH\u0000": "const ADJUST_STRETCH: number & { readonly __brand: \"gui.ADJUST_STRETCH\" };",
1648
+ "gui\u0000CONSTANT\u0000gui.ADJUST_ZOOM\u0000": "const ADJUST_ZOOM: number & { readonly __brand: \"gui.ADJUST_ZOOM\" };",
1649
+ "gui\u0000CONSTANT\u0000gui.ANCHOR_BOTTOM\u0000": "const ANCHOR_BOTTOM: number & { readonly __brand: \"gui.ANCHOR_BOTTOM\" };",
1650
+ "gui\u0000CONSTANT\u0000gui.ANCHOR_LEFT\u0000": "const ANCHOR_LEFT: number & { readonly __brand: \"gui.ANCHOR_LEFT\" };",
1651
+ "gui\u0000CONSTANT\u0000gui.ANCHOR_NONE\u0000": "const ANCHOR_NONE: number & { readonly __brand: \"gui.ANCHOR_NONE\" };",
1652
+ "gui\u0000CONSTANT\u0000gui.ANCHOR_RIGHT\u0000": "const ANCHOR_RIGHT: number & { readonly __brand: \"gui.ANCHOR_RIGHT\" };",
1653
+ "gui\u0000CONSTANT\u0000gui.ANCHOR_TOP\u0000": "const ANCHOR_TOP: number & { readonly __brand: \"gui.ANCHOR_TOP\" };",
1654
+ "gui\u0000CONSTANT\u0000gui.BLEND_ADD\u0000": "const BLEND_ADD: number & { readonly __brand: \"gui.BLEND_ADD\" };",
1655
+ "gui\u0000CONSTANT\u0000gui.BLEND_ADD_ALPHA\u0000": "const BLEND_ADD_ALPHA: number & { readonly __brand: \"gui.BLEND_ADD_ALPHA\" };",
1656
+ "gui\u0000CONSTANT\u0000gui.BLEND_ALPHA\u0000": "const BLEND_ALPHA: number & { readonly __brand: \"gui.BLEND_ALPHA\" };",
1657
+ "gui\u0000CONSTANT\u0000gui.BLEND_MULT\u0000": "const BLEND_MULT: number & { readonly __brand: \"gui.BLEND_MULT\" };",
1658
+ "gui\u0000CONSTANT\u0000gui.BLEND_SCREEN\u0000": "const BLEND_SCREEN: number & { readonly __brand: \"gui.BLEND_SCREEN\" };",
1659
+ "gui\u0000CONSTANT\u0000gui.CLIPPING_MODE_NONE\u0000": "const CLIPPING_MODE_NONE: number & { readonly __brand: \"gui.CLIPPING_MODE_NONE\" };",
1660
+ "gui\u0000CONSTANT\u0000gui.CLIPPING_MODE_STENCIL\u0000": "const CLIPPING_MODE_STENCIL: number & { readonly __brand: \"gui.CLIPPING_MODE_STENCIL\" };",
1661
+ "gui\u0000CONSTANT\u0000gui.EASING_INBACK\u0000": "const EASING_INBACK: number & { readonly __brand: \"gui.EASING_INBACK\" };",
1662
+ "gui\u0000CONSTANT\u0000gui.EASING_INBOUNCE\u0000": "const EASING_INBOUNCE: number & { readonly __brand: \"gui.EASING_INBOUNCE\" };",
1663
+ "gui\u0000CONSTANT\u0000gui.EASING_INCIRC\u0000": "const EASING_INCIRC: number & { readonly __brand: \"gui.EASING_INCIRC\" };",
1664
+ "gui\u0000CONSTANT\u0000gui.EASING_INCUBIC\u0000": "const EASING_INCUBIC: number & { readonly __brand: \"gui.EASING_INCUBIC\" };",
1665
+ "gui\u0000CONSTANT\u0000gui.EASING_INELASTIC\u0000": "const EASING_INELASTIC: number & { readonly __brand: \"gui.EASING_INELASTIC\" };",
1666
+ "gui\u0000CONSTANT\u0000gui.EASING_INEXPO\u0000": "const EASING_INEXPO: number & { readonly __brand: \"gui.EASING_INEXPO\" };",
1667
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTBACK\u0000": "const EASING_INOUTBACK: number & { readonly __brand: \"gui.EASING_INOUTBACK\" };",
1668
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTBOUNCE\u0000": "const EASING_INOUTBOUNCE: number & { readonly __brand: \"gui.EASING_INOUTBOUNCE\" };",
1669
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTCIRC\u0000": "const EASING_INOUTCIRC: number & { readonly __brand: \"gui.EASING_INOUTCIRC\" };",
1670
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTCUBIC\u0000": "const EASING_INOUTCUBIC: number & { readonly __brand: \"gui.EASING_INOUTCUBIC\" };",
1671
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTELASTIC\u0000": "const EASING_INOUTELASTIC: number & { readonly __brand: \"gui.EASING_INOUTELASTIC\" };",
1672
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTEXPO\u0000": "const EASING_INOUTEXPO: number & { readonly __brand: \"gui.EASING_INOUTEXPO\" };",
1673
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTQUAD\u0000": "const EASING_INOUTQUAD: number & { readonly __brand: \"gui.EASING_INOUTQUAD\" };",
1674
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTQUART\u0000": "const EASING_INOUTQUART: number & { readonly __brand: \"gui.EASING_INOUTQUART\" };",
1675
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTQUINT\u0000": "const EASING_INOUTQUINT: number & { readonly __brand: \"gui.EASING_INOUTQUINT\" };",
1676
+ "gui\u0000CONSTANT\u0000gui.EASING_INOUTSINE\u0000": "const EASING_INOUTSINE: number & { readonly __brand: \"gui.EASING_INOUTSINE\" };",
1677
+ "gui\u0000CONSTANT\u0000gui.EASING_INQUAD\u0000": "const EASING_INQUAD: number & { readonly __brand: \"gui.EASING_INQUAD\" };",
1678
+ "gui\u0000CONSTANT\u0000gui.EASING_INQUART\u0000": "const EASING_INQUART: number & { readonly __brand: \"gui.EASING_INQUART\" };",
1679
+ "gui\u0000CONSTANT\u0000gui.EASING_INQUINT\u0000": "const EASING_INQUINT: number & { readonly __brand: \"gui.EASING_INQUINT\" };",
1680
+ "gui\u0000CONSTANT\u0000gui.EASING_INSINE\u0000": "const EASING_INSINE: number & { readonly __brand: \"gui.EASING_INSINE\" };",
1681
+ "gui\u0000CONSTANT\u0000gui.EASING_LINEAR\u0000": "const EASING_LINEAR: number & { readonly __brand: \"gui.EASING_LINEAR\" };",
1682
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTBACK\u0000": "const EASING_OUTBACK: number & { readonly __brand: \"gui.EASING_OUTBACK\" };",
1683
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTBOUNCE\u0000": "const EASING_OUTBOUNCE: number & { readonly __brand: \"gui.EASING_OUTBOUNCE\" };",
1684
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTCIRC\u0000": "const EASING_OUTCIRC: number & { readonly __brand: \"gui.EASING_OUTCIRC\" };",
1685
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTCUBIC\u0000": "const EASING_OUTCUBIC: number & { readonly __brand: \"gui.EASING_OUTCUBIC\" };",
1686
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTELASTIC\u0000": "const EASING_OUTELASTIC: number & { readonly __brand: \"gui.EASING_OUTELASTIC\" };",
1687
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTEXPO\u0000": "const EASING_OUTEXPO: number & { readonly __brand: \"gui.EASING_OUTEXPO\" };",
1688
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINBACK\u0000": "const EASING_OUTINBACK: number & { readonly __brand: \"gui.EASING_OUTINBACK\" };",
1689
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINBOUNCE\u0000": "const EASING_OUTINBOUNCE: number & { readonly __brand: \"gui.EASING_OUTINBOUNCE\" };",
1690
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINCIRC\u0000": "const EASING_OUTINCIRC: number & { readonly __brand: \"gui.EASING_OUTINCIRC\" };",
1691
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINCUBIC\u0000": "const EASING_OUTINCUBIC: number & { readonly __brand: \"gui.EASING_OUTINCUBIC\" };",
1692
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINELASTIC\u0000": "const EASING_OUTINELASTIC: number & { readonly __brand: \"gui.EASING_OUTINELASTIC\" };",
1693
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINEXPO\u0000": "const EASING_OUTINEXPO: number & { readonly __brand: \"gui.EASING_OUTINEXPO\" };",
1694
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINQUAD\u0000": "const EASING_OUTINQUAD: number & { readonly __brand: \"gui.EASING_OUTINQUAD\" };",
1695
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINQUART\u0000": "const EASING_OUTINQUART: number & { readonly __brand: \"gui.EASING_OUTINQUART\" };",
1696
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINQUINT\u0000": "const EASING_OUTINQUINT: number & { readonly __brand: \"gui.EASING_OUTINQUINT\" };",
1697
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTINSINE\u0000": "const EASING_OUTINSINE: number & { readonly __brand: \"gui.EASING_OUTINSINE\" };",
1698
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTQUAD\u0000": "const EASING_OUTQUAD: number & { readonly __brand: \"gui.EASING_OUTQUAD\" };",
1699
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTQUART\u0000": "const EASING_OUTQUART: number & { readonly __brand: \"gui.EASING_OUTQUART\" };",
1700
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTQUINT\u0000": "const EASING_OUTQUINT: number & { readonly __brand: \"gui.EASING_OUTQUINT\" };",
1701
+ "gui\u0000CONSTANT\u0000gui.EASING_OUTSINE\u0000": "const EASING_OUTSINE: number & { readonly __brand: \"gui.EASING_OUTSINE\" };",
1702
+ "gui\u0000CONSTANT\u0000gui.KEYBOARD_TYPE_DEFAULT\u0000": "const KEYBOARD_TYPE_DEFAULT: number & { readonly __brand: \"gui.KEYBOARD_TYPE_DEFAULT\" };",
1703
+ "gui\u0000CONSTANT\u0000gui.KEYBOARD_TYPE_EMAIL\u0000": "const KEYBOARD_TYPE_EMAIL: number & { readonly __brand: \"gui.KEYBOARD_TYPE_EMAIL\" };",
1704
+ "gui\u0000CONSTANT\u0000gui.KEYBOARD_TYPE_NUMBER_PAD\u0000": "const KEYBOARD_TYPE_NUMBER_PAD: number & { readonly __brand: \"gui.KEYBOARD_TYPE_NUMBER_PAD\" };",
1705
+ "gui\u0000CONSTANT\u0000gui.KEYBOARD_TYPE_PASSWORD\u0000": "const KEYBOARD_TYPE_PASSWORD: number & { readonly __brand: \"gui.KEYBOARD_TYPE_PASSWORD\" };",
1706
+ "gui\u0000CONSTANT\u0000gui.PIEBOUNDS_ELLIPSE\u0000": "const PIEBOUNDS_ELLIPSE: number & { readonly __brand: \"gui.PIEBOUNDS_ELLIPSE\" };",
1707
+ "gui\u0000CONSTANT\u0000gui.PIEBOUNDS_RECTANGLE\u0000": "const PIEBOUNDS_RECTANGLE: number & { readonly __brand: \"gui.PIEBOUNDS_RECTANGLE\" };",
1708
+ "gui\u0000CONSTANT\u0000gui.PIVOT_CENTER\u0000": "const PIVOT_CENTER: number & { readonly __brand: \"gui.PIVOT_CENTER\" };",
1709
+ "gui\u0000CONSTANT\u0000gui.PIVOT_E\u0000": "const PIVOT_E: number & { readonly __brand: \"gui.PIVOT_E\" };",
1710
+ "gui\u0000CONSTANT\u0000gui.PIVOT_N\u0000": "const PIVOT_N: number & { readonly __brand: \"gui.PIVOT_N\" };",
1711
+ "gui\u0000CONSTANT\u0000gui.PIVOT_NE\u0000": "const PIVOT_NE: number & { readonly __brand: \"gui.PIVOT_NE\" };",
1712
+ "gui\u0000CONSTANT\u0000gui.PIVOT_NW\u0000": "const PIVOT_NW: number & { readonly __brand: \"gui.PIVOT_NW\" };",
1713
+ "gui\u0000CONSTANT\u0000gui.PIVOT_S\u0000": "const PIVOT_S: number & { readonly __brand: \"gui.PIVOT_S\" };",
1714
+ "gui\u0000CONSTANT\u0000gui.PIVOT_SE\u0000": "const PIVOT_SE: number & { readonly __brand: \"gui.PIVOT_SE\" };",
1715
+ "gui\u0000CONSTANT\u0000gui.PIVOT_SW\u0000": "const PIVOT_SW: number & { readonly __brand: \"gui.PIVOT_SW\" };",
1716
+ "gui\u0000CONSTANT\u0000gui.PIVOT_W\u0000": "const PIVOT_W: number & { readonly __brand: \"gui.PIVOT_W\" };",
1717
+ "gui\u0000CONSTANT\u0000gui.PLAYBACK_LOOP_BACKWARD\u0000": "const PLAYBACK_LOOP_BACKWARD: number & { readonly __brand: \"gui.PLAYBACK_LOOP_BACKWARD\" };",
1718
+ "gui\u0000CONSTANT\u0000gui.PLAYBACK_LOOP_FORWARD\u0000": "const PLAYBACK_LOOP_FORWARD: number & { readonly __brand: \"gui.PLAYBACK_LOOP_FORWARD\" };",
1719
+ "gui\u0000CONSTANT\u0000gui.PLAYBACK_LOOP_PINGPONG\u0000": "const PLAYBACK_LOOP_PINGPONG: number & { readonly __brand: \"gui.PLAYBACK_LOOP_PINGPONG\" };",
1720
+ "gui\u0000CONSTANT\u0000gui.PLAYBACK_ONCE_BACKWARD\u0000": "const PLAYBACK_ONCE_BACKWARD: number & { readonly __brand: \"gui.PLAYBACK_ONCE_BACKWARD\" };",
1721
+ "gui\u0000CONSTANT\u0000gui.PLAYBACK_ONCE_FORWARD\u0000": "const PLAYBACK_ONCE_FORWARD: number & { readonly __brand: \"gui.PLAYBACK_ONCE_FORWARD\" };",
1722
+ "gui\u0000CONSTANT\u0000gui.PLAYBACK_ONCE_PINGPONG\u0000": "const PLAYBACK_ONCE_PINGPONG: number & { readonly __brand: \"gui.PLAYBACK_ONCE_PINGPONG\" };",
1723
+ "gui\u0000CONSTANT\u0000gui.PROP_COLOR\u0000": "const PROP_COLOR: number & { readonly __brand: \"gui.PROP_COLOR\" };",
1724
+ "gui\u0000CONSTANT\u0000gui.PROP_EULER\u0000": "const PROP_EULER: number & { readonly __brand: \"gui.PROP_EULER\" };",
1725
+ "gui\u0000CONSTANT\u0000gui.PROP_FILL_ANGLE\u0000": "const PROP_FILL_ANGLE: number & { readonly __brand: \"gui.PROP_FILL_ANGLE\" };",
1726
+ "gui\u0000CONSTANT\u0000gui.PROP_INNER_RADIUS\u0000": "const PROP_INNER_RADIUS: number & { readonly __brand: \"gui.PROP_INNER_RADIUS\" };",
1727
+ "gui\u0000CONSTANT\u0000gui.PROP_LEADING\u0000": "const PROP_LEADING: number & { readonly __brand: \"gui.PROP_LEADING\" };",
1728
+ "gui\u0000CONSTANT\u0000gui.PROP_OUTLINE\u0000": "const PROP_OUTLINE: number & { readonly __brand: \"gui.PROP_OUTLINE\" };",
1729
+ "gui\u0000CONSTANT\u0000gui.PROP_POSITION\u0000": "const PROP_POSITION: number & { readonly __brand: \"gui.PROP_POSITION\" };",
1730
+ "gui\u0000CONSTANT\u0000gui.PROP_ROTATION\u0000": "const PROP_ROTATION: number & { readonly __brand: \"gui.PROP_ROTATION\" };",
1731
+ "gui\u0000CONSTANT\u0000gui.PROP_SCALE\u0000": "const PROP_SCALE: number & { readonly __brand: \"gui.PROP_SCALE\" };",
1732
+ "gui\u0000CONSTANT\u0000gui.PROP_SHADOW\u0000": "const PROP_SHADOW: number & { readonly __brand: \"gui.PROP_SHADOW\" };",
1733
+ "gui\u0000CONSTANT\u0000gui.PROP_SIZE\u0000": "const PROP_SIZE: number & { readonly __brand: \"gui.PROP_SIZE\" };",
1734
+ "gui\u0000CONSTANT\u0000gui.PROP_SLICE9\u0000": "const PROP_SLICE9: number & { readonly __brand: \"gui.PROP_SLICE9\" };",
1735
+ "gui\u0000CONSTANT\u0000gui.PROP_TRACKING\u0000": "const PROP_TRACKING: number & { readonly __brand: \"gui.PROP_TRACKING\" };",
1736
+ "gui\u0000CONSTANT\u0000gui.RESULT_DATA_ERROR\u0000": "const RESULT_DATA_ERROR: number & { readonly __brand: \"gui.RESULT_DATA_ERROR\" };",
1737
+ "gui\u0000CONSTANT\u0000gui.RESULT_OUT_OF_RESOURCES\u0000": "const RESULT_OUT_OF_RESOURCES: number & { readonly __brand: \"gui.RESULT_OUT_OF_RESOURCES\" };",
1738
+ "gui\u0000CONSTANT\u0000gui.RESULT_TEXTURE_ALREADY_EXISTS\u0000": "const RESULT_TEXTURE_ALREADY_EXISTS: number & { readonly __brand: \"gui.RESULT_TEXTURE_ALREADY_EXISTS\" };",
1739
+ "gui\u0000CONSTANT\u0000gui.SAFE_AREA_BOTH\u0000": "const SAFE_AREA_BOTH: number & { readonly __brand: \"gui.SAFE_AREA_BOTH\" };",
1740
+ "gui\u0000CONSTANT\u0000gui.SAFE_AREA_LONG\u0000": "const SAFE_AREA_LONG: number & { readonly __brand: \"gui.SAFE_AREA_LONG\" };",
1741
+ "gui\u0000CONSTANT\u0000gui.SAFE_AREA_NONE\u0000": "const SAFE_AREA_NONE: number & { readonly __brand: \"gui.SAFE_AREA_NONE\" };",
1742
+ "gui\u0000CONSTANT\u0000gui.SAFE_AREA_SHORT\u0000": "const SAFE_AREA_SHORT: number & { readonly __brand: \"gui.SAFE_AREA_SHORT\" };",
1743
+ "gui\u0000CONSTANT\u0000gui.SIZE_MODE_AUTO\u0000": "const SIZE_MODE_AUTO: number & { readonly __brand: \"gui.SIZE_MODE_AUTO\" };",
1744
+ "gui\u0000CONSTANT\u0000gui.SIZE_MODE_MANUAL\u0000": "const SIZE_MODE_MANUAL: number & { readonly __brand: \"gui.SIZE_MODE_MANUAL\" };",
1745
+ "gui\u0000CONSTANT\u0000gui.TYPE_BOX\u0000": "const TYPE_BOX: number & { readonly __brand: \"gui.TYPE_BOX\" };",
1746
+ "gui\u0000CONSTANT\u0000gui.TYPE_CUSTOM\u0000": "const TYPE_CUSTOM: number & { readonly __brand: \"gui.TYPE_CUSTOM\" };",
1747
+ "gui\u0000CONSTANT\u0000gui.TYPE_PARTICLEFX\u0000": "const TYPE_PARTICLEFX: number & { readonly __brand: \"gui.TYPE_PARTICLEFX\" };",
1748
+ "gui\u0000CONSTANT\u0000gui.TYPE_PIE\u0000": "const TYPE_PIE: number & { readonly __brand: \"gui.TYPE_PIE\" };",
1749
+ "gui\u0000CONSTANT\u0000gui.TYPE_TEXT\u0000": "const TYPE_TEXT: number & { readonly __brand: \"gui.TYPE_TEXT\" };",
1750
+ "gui\u0000FUNCTION\u0000final\u0000[{\"types\":[\"userdata\"],\"isOptional\":false}]->[]": "function final(self: Opaque<\"userdata\">): void;",
1751
+ "gui\u0000FUNCTION\u0000gui.animate\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\",\"string\"],\"isOptional\":false},{\"types\":[\"number\",\"quaternion\",\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"constant\",\"vector\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true},{\"types\":[\"function(self, node)\"],\"isOptional\":true},{\"types\":[\"constant\"],\"isOptional\":true}]->[]": "function animate(node: Opaque<\"node\">, property: string | Opaque<\"constant\">, to: number | Vector3 | Vector4 | Quaternion, easing: Opaque<\"constant\"> | Vector, duration: number, delay?: number, complete_function?: (self: unknown, node: unknown) => void, playback?: Opaque<\"constant\">): void;",
1752
+ "gui\u0000FUNCTION\u0000gui.cancel_animations\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\",\"nil\",\"string\"],\"isOptional\":true}]->[]": "function cancel_animations(node: Opaque<\"node\">, property?: string | Opaque<\"constant\">): void;",
1753
+ "gui\u0000FUNCTION\u0000gui.cancel_flipbook\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[]": "function cancel_flipbook(node: Opaque<\"node\">): void;",
1754
+ "gui\u0000FUNCTION\u0000gui.clone\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"node\"],\"isOptional\":false}]": "function clone(node: Opaque<\"node\">): Opaque<\"node\">;",
1755
+ "gui\u0000FUNCTION\u0000gui.clone_tree\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function clone_tree(node: Opaque<\"node\">): LuaMap<Hash, Opaque<\"node\">>;",
1756
+ "gui\u0000FUNCTION\u0000gui.delete_node\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[]": "function delete_node(node: Opaque<\"node\">): void;",
1757
+ "gui\u0000FUNCTION\u0000gui.delete_texture\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function delete_texture(texture: string | Hash): void;",
1758
+ "gui\u0000FUNCTION\u0000gui.get\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\",\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function get(node: Opaque<\"node\">, property: string | Hash | Opaque<\"constant\">, options?: { index?: number }): unknown;",
1759
+ "gui\u0000FUNCTION\u0000gui.get_adjust_mode\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_adjust_mode(node: Opaque<\"node\">): Opaque<\"constant\">;",
1760
+ "gui\u0000FUNCTION\u0000gui.get_alpha\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_alpha(node: Opaque<\"node\">): number;",
1761
+ "gui\u0000FUNCTION\u0000gui.get_blend_mode\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_blend_mode(node: Opaque<\"node\">): Opaque<\"constant\">;",
1762
+ "gui\u0000FUNCTION\u0000gui.get_clipping_inverted\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_clipping_inverted(node: Opaque<\"node\">): boolean;",
1763
+ "gui\u0000FUNCTION\u0000gui.get_clipping_mode\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_clipping_mode(node: Opaque<\"node\">): Opaque<\"constant\">;",
1764
+ "gui\u0000FUNCTION\u0000gui.get_clipping_visible\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_clipping_visible(node: Opaque<\"node\">): boolean;",
1765
+ "gui\u0000FUNCTION\u0000gui.get_color\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector4\"],\"isOptional\":false}]": "function get_color(node: Opaque<\"node\">): Vector4;",
1766
+ "gui\u0000FUNCTION\u0000gui.get_euler\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_euler(node: Opaque<\"node\">): Vector3;",
1767
+ "gui\u0000FUNCTION\u0000gui.get_fill_angle\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_fill_angle(node: Opaque<\"node\">): number;",
1768
+ "gui\u0000FUNCTION\u0000gui.get_flipbook\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_flipbook(node: Opaque<\"node\">): Hash;",
1769
+ "gui\u0000FUNCTION\u0000gui.get_flipbook_cursor\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_flipbook_cursor(node: Opaque<\"node\">): number;",
1770
+ "gui\u0000FUNCTION\u0000gui.get_flipbook_playback_rate\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_flipbook_playback_rate(node: Opaque<\"node\">): number;",
1771
+ "gui\u0000FUNCTION\u0000gui.get_font\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_font(node: Opaque<\"node\">): Hash;",
1772
+ "gui\u0000FUNCTION\u0000gui.get_font_resource\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_font_resource(font_name: Hash | string): Hash;",
1773
+ "gui\u0000FUNCTION\u0000gui.get_height\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_height(): number;",
1774
+ "gui\u0000FUNCTION\u0000gui.get_id\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_id(node: Opaque<\"node\">): Hash;",
1775
+ "gui\u0000FUNCTION\u0000gui.get_index\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_index(node: Opaque<\"node\">): number;",
1776
+ "gui\u0000FUNCTION\u0000gui.get_inherit_alpha\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_inherit_alpha(node: Opaque<\"node\">): boolean;",
1777
+ "gui\u0000FUNCTION\u0000gui.get_inner_radius\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_inner_radius(node: Opaque<\"node\">): number;",
1778
+ "gui\u0000FUNCTION\u0000gui.get_layer\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_layer(node: Opaque<\"node\">): Hash;",
1779
+ "gui\u0000FUNCTION\u0000gui.get_layout\u0000[]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_layout(): Hash;",
1780
+ "gui\u0000FUNCTION\u0000gui.get_layouts\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_layouts(): LuaMap<Hash, Vector3>;",
1781
+ "gui\u0000FUNCTION\u0000gui.get_leading\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_leading(node: Opaque<\"node\">): number;",
1782
+ "gui\u0000FUNCTION\u0000gui.get_line_break\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_line_break(node: Opaque<\"node\">): boolean;",
1783
+ "gui\u0000FUNCTION\u0000gui.get_material\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_material(node: Opaque<\"node\">): Hash;",
1784
+ "gui\u0000FUNCTION\u0000gui.get_node\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"node\"],\"isOptional\":false}]": "function get_node(id: string | Hash): Opaque<\"node\">;",
1785
+ "gui\u0000FUNCTION\u0000gui.get_outer_bounds\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_outer_bounds(node: Opaque<\"node\">): Opaque<\"constant\">;",
1786
+ "gui\u0000FUNCTION\u0000gui.get_outline\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector4\"],\"isOptional\":false}]": "function get_outline(node: Opaque<\"node\">): Vector4;",
1787
+ "gui\u0000FUNCTION\u0000gui.get_parent\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"node\"],\"isOptional\":false}]": "function get_parent(node: Opaque<\"node\">): Opaque<\"node\"> | unknown;",
1788
+ "gui\u0000FUNCTION\u0000gui.get_particlefx\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_particlefx(node: Opaque<\"node\">): Hash;",
1789
+ "gui\u0000FUNCTION\u0000gui.get_perimeter_vertices\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_perimeter_vertices(node: Opaque<\"node\">): number;",
1790
+ "gui\u0000FUNCTION\u0000gui.get_pivot\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_pivot(node: Opaque<\"node\">): Opaque<\"constant\">;",
1791
+ "gui\u0000FUNCTION\u0000gui.get_position\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_position(node: Opaque<\"node\">): Vector3;",
1792
+ "gui\u0000FUNCTION\u0000gui.get_rotation\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function get_rotation(node: Opaque<\"node\">): Quaternion;",
1793
+ "gui\u0000FUNCTION\u0000gui.get_scale\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_scale(node: Opaque<\"node\">): Vector3;",
1794
+ "gui\u0000FUNCTION\u0000gui.get_screen_position\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_screen_position(node: Opaque<\"node\">): Vector3;",
1795
+ "gui\u0000FUNCTION\u0000gui.get_shadow\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector4\"],\"isOptional\":false}]": "function get_shadow(node: Opaque<\"node\">): Vector4;",
1796
+ "gui\u0000FUNCTION\u0000gui.get_size\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_size(node: Opaque<\"node\">): Vector3;",
1797
+ "gui\u0000FUNCTION\u0000gui.get_size_mode\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_size_mode(node: Opaque<\"node\">): Opaque<\"constant\">;",
1798
+ "gui\u0000FUNCTION\u0000gui.get_slice9\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"vector4\"],\"isOptional\":false}]": "function get_slice9(node: Opaque<\"node\">): Vector4;",
1799
+ "gui\u0000FUNCTION\u0000gui.get_text\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_text(node: Opaque<\"node\">): string;",
1800
+ "gui\u0000FUNCTION\u0000gui.get_texture\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_texture(node: Opaque<\"node\">): Hash;",
1801
+ "gui\u0000FUNCTION\u0000gui.get_tracking\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_tracking(node: Opaque<\"node\">): number;",
1802
+ "gui\u0000FUNCTION\u0000gui.get_tree\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_tree(node: Opaque<\"node\">): LuaMap<Hash, Opaque<\"node\">>;",
1803
+ "gui\u0000FUNCTION\u0000gui.get_type\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false},{\"types\":[\"nil\",\"number\"],\"isOptional\":false}]": "function get_type(node: Opaque<\"node\">): LuaMultiReturn<[Opaque<\"constant\">, number | unknown]>;",
1804
+ "gui\u0000FUNCTION\u0000gui.get_visible\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_visible(node: Opaque<\"node\">): boolean;",
1805
+ "gui\u0000FUNCTION\u0000gui.get_width\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_width(): number;",
1806
+ "gui\u0000FUNCTION\u0000gui.get_xanchor\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_xanchor(node: Opaque<\"node\">): Opaque<\"constant\">;",
1807
+ "gui\u0000FUNCTION\u0000gui.get_yanchor\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_yanchor(node: Opaque<\"node\">): Opaque<\"constant\">;",
1808
+ "gui\u0000FUNCTION\u0000gui.hide_keyboard\u0000[]->[]": "function hide_keyboard(): void;",
1809
+ "gui\u0000FUNCTION\u0000gui.is_enabled\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":true}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_enabled(node: Opaque<\"node\">, recursive?: boolean): boolean;",
1810
+ "gui\u0000FUNCTION\u0000gui.move_above\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"nil\",\"node\"],\"isOptional\":false}]->[]": "function move_above(node: Opaque<\"node\">, reference?: Opaque<\"node\">): void;",
1811
+ "gui\u0000FUNCTION\u0000gui.move_below\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"nil\",\"node\"],\"isOptional\":false}]->[]": "function move_below(node: Opaque<\"node\">, reference?: Opaque<\"node\">): void;",
1812
+ "gui\u0000FUNCTION\u0000gui.new_box_node\u0000[{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"node\"],\"isOptional\":false}]": "function new_box_node(pos: Vector3 | Vector4, size: Vector3): Opaque<\"node\">;",
1813
+ "gui\u0000FUNCTION\u0000gui.new_particlefx_node\u0000[{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"node\"],\"isOptional\":false}]": "function new_particlefx_node(pos: Vector3 | Vector4, particlefx: Hash | string): Opaque<\"node\">;",
1814
+ "gui\u0000FUNCTION\u0000gui.new_pie_node\u0000[{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"node\"],\"isOptional\":false}]": "function new_pie_node(pos: Vector3 | Vector4, size: Vector3): Opaque<\"node\">;",
1815
+ "gui\u0000FUNCTION\u0000gui.new_text_node\u0000[{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"node\"],\"isOptional\":false}]": "function new_text_node(pos: Vector3 | Vector4, text: string): Opaque<\"node\">;",
1816
+ "gui\u0000FUNCTION\u0000gui.new_texture\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"constant\",\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]": "function new_texture(texture_id: string | Hash, width: number, height: number, type: string | Opaque<\"constant\">, buffer: string, flip: boolean): LuaMultiReturn<[boolean, number]>;",
1817
+ "gui\u0000FUNCTION\u0000gui.pick_node\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function pick_node(node: Opaque<\"node\">, x: number, y: number): boolean;",
1818
+ "gui\u0000FUNCTION\u0000gui.play_flipbook\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"function(self, node)\"],\"isOptional\":true},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function play_flipbook(node: Opaque<\"node\">, animation: string | Hash, complete_function?: (self: unknown, node: unknown) => void, play_properties?: { offset?: number; playback_rate?: number }): void;",
1819
+ "gui\u0000FUNCTION\u0000gui.play_particlefx\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"function(self, node, emitter, state)\"],\"isOptional\":true}]->[]": "function play_particlefx(node: Opaque<\"node\">, emitter_state_function?: (self: unknown, node: unknown, emitter: unknown, state: unknown) => void): void;",
1820
+ "gui\u0000FUNCTION\u0000gui.reset_keyboard\u0000[]->[]": "function reset_keyboard(): void;",
1821
+ "gui\u0000FUNCTION\u0000gui.reset_material\u0000[{\"types\":[\"node\"],\"isOptional\":false}]->[]": "function reset_material(node: Opaque<\"node\">): void;",
1822
+ "gui\u0000FUNCTION\u0000gui.reset_nodes\u0000[]->[]": "function reset_nodes(): void;",
1823
+ "gui\u0000FUNCTION\u0000gui.screen_to_local\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function screen_to_local(node: Opaque<\"node\">, screen_position: Vector3): Vector3;",
1824
+ "gui\u0000FUNCTION\u0000gui.set\u0000[{\"types\":[\"node\",\"url\"],\"isOptional\":false},{\"types\":[\"constant\",\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\",\"quaternion\",\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function set(node: Opaque<\"node\"> | Url, property: string | Hash | Opaque<\"constant\">, value: number | Vector4 | Vector3 | Quaternion, options?: { index?: number; key?: Hash }): void;",
1825
+ "gui\u0000FUNCTION\u0000gui.set_adjust_mode\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_adjust_mode(node: Opaque<\"node\">, adjust_mode: Opaque<\"constant\">): void;",
1826
+ "gui\u0000FUNCTION\u0000gui.set_alpha\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_alpha(node: Opaque<\"node\">, alpha: number): void;",
1827
+ "gui\u0000FUNCTION\u0000gui.set_blend_mode\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_blend_mode(node: Opaque<\"node\">, blend_mode: Opaque<\"constant\">): void;",
1828
+ "gui\u0000FUNCTION\u0000gui.set_clipping_inverted\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_clipping_inverted(node: Opaque<\"node\">, inverted: boolean): void;",
1829
+ "gui\u0000FUNCTION\u0000gui.set_clipping_mode\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_clipping_mode(node: Opaque<\"node\">, clipping_mode: Opaque<\"constant\">): void;",
1830
+ "gui\u0000FUNCTION\u0000gui.set_clipping_visible\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_clipping_visible(node: Opaque<\"node\">, visible: boolean): void;",
1831
+ "gui\u0000FUNCTION\u0000gui.set_color\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[]": "function set_color(node: Opaque<\"node\">, color: Vector3 | Vector4): void;",
1832
+ "gui\u0000FUNCTION\u0000gui.set_enabled\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_enabled(node: Opaque<\"node\">, enabled: boolean): void;",
1833
+ "gui\u0000FUNCTION\u0000gui.set_euler\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[]": "function set_euler(node: Opaque<\"node\">, rotation: Vector3 | Vector4): void;",
1834
+ "gui\u0000FUNCTION\u0000gui.set_fill_angle\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_fill_angle(node: Opaque<\"node\">, angle: number): void;",
1835
+ "gui\u0000FUNCTION\u0000gui.set_flipbook_cursor\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_flipbook_cursor(node: Opaque<\"node\">, cursor: number): void;",
1836
+ "gui\u0000FUNCTION\u0000gui.set_flipbook_playback_rate\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_flipbook_playback_rate(node: Opaque<\"node\">, playback_rate: number): void;",
1837
+ "gui\u0000FUNCTION\u0000gui.set_font\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function set_font(node: Opaque<\"node\">, font: string | Hash): void;",
1838
+ "gui\u0000FUNCTION\u0000gui.set_id\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function set_id(node: Opaque<\"node\">, id: string | Hash): void;",
1839
+ "gui\u0000FUNCTION\u0000gui.set_inherit_alpha\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_inherit_alpha(node: Opaque<\"node\">, inherit_alpha: boolean): void;",
1840
+ "gui\u0000FUNCTION\u0000gui.set_inner_radius\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_inner_radius(node: Opaque<\"node\">, radius: number): void;",
1841
+ "gui\u0000FUNCTION\u0000gui.set_layer\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function set_layer(node: Opaque<\"node\">, layer: string | Hash): void;",
1842
+ "gui\u0000FUNCTION\u0000gui.set_layout\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function set_layout(layout: string | Hash): boolean;",
1843
+ "gui\u0000FUNCTION\u0000gui.set_leading\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_leading(node: Opaque<\"node\">, leading: number): void;",
1844
+ "gui\u0000FUNCTION\u0000gui.set_line_break\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_line_break(node: Opaque<\"node\">, line_break: boolean): void;",
1845
+ "gui\u0000FUNCTION\u0000gui.set_material\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function set_material(node: Opaque<\"node\">, material: string | Hash): void;",
1846
+ "gui\u0000FUNCTION\u0000gui.set_outer_bounds\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_outer_bounds(node: Opaque<\"node\">, bounds_mode: Opaque<\"constant\">): void;",
1847
+ "gui\u0000FUNCTION\u0000gui.set_outline\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[]": "function set_outline(node: Opaque<\"node\">, color: Vector3 | Vector4): void;",
1848
+ "gui\u0000FUNCTION\u0000gui.set_parent\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"node\"],\"isOptional\":true},{\"types\":[\"boolean\"],\"isOptional\":true}]->[]": "function set_parent(node: Opaque<\"node\">, parent?: Opaque<\"node\">, keep_scene_transform?: boolean): void;",
1849
+ "gui\u0000FUNCTION\u0000gui.set_particlefx\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function set_particlefx(node: Opaque<\"node\">, particlefx: Hash | string): void;",
1850
+ "gui\u0000FUNCTION\u0000gui.set_perimeter_vertices\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_perimeter_vertices(node: Opaque<\"node\">, vertices: number): void;",
1851
+ "gui\u0000FUNCTION\u0000gui.set_pivot\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_pivot(node: Opaque<\"node\">, pivot: Opaque<\"constant\">): void;",
1852
+ "gui\u0000FUNCTION\u0000gui.set_position\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[]": "function set_position(node: Opaque<\"node\">, position: Vector3 | Vector4): void;",
1853
+ "gui\u0000FUNCTION\u0000gui.set_render_order\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_render_order(order: number): void;",
1854
+ "gui\u0000FUNCTION\u0000gui.set_rotation\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"quaternion\",\"vector4\"],\"isOptional\":false}]->[]": "function set_rotation(node: Opaque<\"node\">, rotation: Quaternion | Vector4): void;",
1855
+ "gui\u0000FUNCTION\u0000gui.set_safe_area_mode\u0000[{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_safe_area_mode(mode: Opaque<\"constant\">): void;",
1856
+ "gui\u0000FUNCTION\u0000gui.set_scale\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[]": "function set_scale(node: Opaque<\"node\">, scale: Vector3 | Vector4): void;",
1857
+ "gui\u0000FUNCTION\u0000gui.set_screen_position\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[]": "function set_screen_position(node: Opaque<\"node\">, screen_position: Vector3): void;",
1858
+ "gui\u0000FUNCTION\u0000gui.set_shadow\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[]": "function set_shadow(node: Opaque<\"node\">, color: Vector3 | Vector4): void;",
1859
+ "gui\u0000FUNCTION\u0000gui.set_size\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[]": "function set_size(node: Opaque<\"node\">, size: Vector3 | Vector4): void;",
1860
+ "gui\u0000FUNCTION\u0000gui.set_size_mode\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_size_mode(node: Opaque<\"node\">, size_mode: Opaque<\"constant\">): void;",
1861
+ "gui\u0000FUNCTION\u0000gui.set_slice9\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"vector4\"],\"isOptional\":false}]->[]": "function set_slice9(node: Opaque<\"node\">, values: Vector4): void;",
1862
+ "gui\u0000FUNCTION\u0000gui.set_text\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\",\"string\"],\"isOptional\":false}]->[]": "function set_text(node: Opaque<\"node\">, text: string | number): void;",
1863
+ "gui\u0000FUNCTION\u0000gui.set_texture\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function set_texture(node: Opaque<\"node\">, texture: string | Hash): void;",
1864
+ "gui\u0000FUNCTION\u0000gui.set_texture_data\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"constant\",\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function set_texture_data(texture: string | Hash, width: number, height: number, type: string | Opaque<\"constant\">, buffer: string, flip: boolean): boolean;",
1865
+ "gui\u0000FUNCTION\u0000gui.set_tracking\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_tracking(node: Opaque<\"node\">, tracking: number): void;",
1866
+ "gui\u0000FUNCTION\u0000gui.set_visible\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_visible(node: Opaque<\"node\">, visible: boolean): void;",
1867
+ "gui\u0000FUNCTION\u0000gui.set_xanchor\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_xanchor(node: Opaque<\"node\">, anchor: Opaque<\"constant\">): void;",
1868
+ "gui\u0000FUNCTION\u0000gui.set_yanchor\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_yanchor(node: Opaque<\"node\">, anchor: Opaque<\"constant\">): void;",
1869
+ "gui\u0000FUNCTION\u0000gui.show_keyboard\u0000[{\"types\":[\"constant\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function show_keyboard(type: Opaque<\"constant\">, autoclose: boolean): void;",
1870
+ "gui\u0000FUNCTION\u0000gui.stop_particlefx\u0000[{\"types\":[\"node\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function stop_particlefx(node: Opaque<\"node\">, options?: { clear?: boolean }): void;",
1871
+ "gui\u0000FUNCTION\u0000init\u0000[{\"types\":[\"userdata\"],\"isOptional\":false}]->[]": "function init(self: Opaque<\"userdata\">): void;",
1872
+ "gui\u0000FUNCTION\u0000on_input\u0000[{\"types\":[\"userdata\"],\"isOptional\":false},{\"types\":[\"hash\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"boolean\",\"nil\"],\"isOptional\":false}]": "function on_input(self: Opaque<\"userdata\">, action_id: Hash, action: { value?: number; pressed?: boolean; released?: boolean; repeated?: boolean; x?: number; y?: number; screen_x?: number; screen_y?: number; dx?: number; dy?: number; screen_dx?: number; screen_dy?: number; gamepad?: number; gamepad_axis?: Vector3; touch?: { id?: number; pressed?: boolean; released?: boolean; tap_count?: number; x?: number; y?: number; dx?: number; dy?: number; acc_x?: number; acc_y?: number; acc_z?: number }[]; text?: string }): boolean | unknown;",
1873
+ "gui\u0000FUNCTION\u0000on_message\u0000[{\"types\":[\"userdata\"],\"isOptional\":false},{\"types\":[\"hash\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function on_message(self: Opaque<\"userdata\">, message_id: Hash, message: Record<string | number, unknown>): void;",
1874
+ "gui\u0000FUNCTION\u0000on_reload\u0000[{\"types\":[\"userdata\"],\"isOptional\":false}]->[]": "function on_reload(self: Opaque<\"userdata\">): void;",
1875
+ "gui\u0000FUNCTION\u0000update\u0000[{\"types\":[\"userdata\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function update(self: Opaque<\"userdata\">, dt: number): void;",
1876
+ "gui\u0000PROPERTY\u0000fonts\u0000": "fonts: Hash;",
1877
+ "gui\u0000PROPERTY\u0000material\u0000": "material: Hash;",
1878
+ "gui\u0000PROPERTY\u0000materials\u0000": "materials: Hash;",
1879
+ "gui\u0000PROPERTY\u0000textures\u0000": "textures: Hash;",
1880
+ "html5\u0000FUNCTION\u0000html5.run\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function run(code: string): string;",
1881
+ "html5\u0000FUNCTION\u0000html5.set_interaction_listener\u0000[{\"types\":[\"function(self)\",\"nil\"],\"isOptional\":false}]->[]": "function set_interaction_listener(callback?: (self: unknown) => void): void;",
1882
+ "http\u0000FUNCTION\u0000http.request\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"function(self, id, response)\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true},{\"types\":[\"string\"],\"isOptional\":true},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function request(url: string, method: string, callback: (self: unknown, id: unknown, response: unknown) => void, headers?: LuaMap<string, string>, post_data?: string, options?: { timeout?: number; path?: string; ignore_cache?: boolean; chunked_transfer?: boolean; report_progress?: boolean }): void;",
1883
+ "iac\u0000FUNCTION\u0000iac.set_listener\u0000[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_listener(payload: Record<string | number, unknown>, type: number): void;",
1884
+ "iap\u0000FUNCTION\u0000iap.acknowledge\u0000[{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function acknowledge(transaction: { ident?: string; state?: number; trans_ident?: string; date?: string; original_trans?: string; receipt?: string; signature?: string; user_id?: string }): void;",
1885
+ "iap\u0000FUNCTION\u0000iap.buy\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function buy(id: string, options: { request_id?: string; token?: string }): void;",
1886
+ "iap\u0000FUNCTION\u0000iap.finish\u0000[{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function finish(transaction: { ident?: string; state?: number; trans_ident?: string; date?: string; original_trans?: string; receipt?: string; signature?: string; user_id?: string }): void;",
1887
+ "iap\u0000FUNCTION\u0000iap.get_provider_id\u0000[]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_provider_id(): Opaque<\"constant\">;",
1888
+ "iap\u0000FUNCTION\u0000iap.list\u0000[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"function\"],\"isOptional\":false}]->[]": "function list(ids: string[], callback: (...args: unknown[]) => unknown): void;",
1889
+ "iap\u0000FUNCTION\u0000iap.restore\u0000[]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function restore(): boolean;",
1890
+ "iap\u0000FUNCTION\u0000iap.set_listener\u0000[{\"types\":[\"function\"],\"isOptional\":false}]->[]": "function set_listener(listener: (...args: unknown[]) => unknown): void;",
1891
+ "image\u0000CONSTANT\u0000image.TYPE_LUMINANCE\u0000": "const TYPE_LUMINANCE: number & { readonly __brand: \"image.TYPE_LUMINANCE\" };",
1892
+ "image\u0000CONSTANT\u0000image.TYPE_LUMINANCE_ALPHA\u0000": "const TYPE_LUMINANCE_ALPHA: number & { readonly __brand: \"image.TYPE_LUMINANCE_ALPHA\" };",
1893
+ "image\u0000CONSTANT\u0000image.TYPE_RGB\u0000": "const TYPE_RGB: number & { readonly __brand: \"image.TYPE_RGB\" };",
1894
+ "image\u0000CONSTANT\u0000image.TYPE_RGBA\u0000": "const TYPE_RGBA: number & { readonly __brand: \"image.TYPE_RGBA\" };",
1895
+ "image\u0000FUNCTION\u0000image.get_astc_header\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"table\"],\"isOptional\":false}]": "function get_astc_header(buffer: string): { width: number; height: number; depth: number; block_size_x: number; block_size_y: number; block_size_z: number } | unknown;",
1896
+ "image\u0000FUNCTION\u0000image.load\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"table\"],\"isOptional\":false}]": "function load(buffer: string, options?: { premultiply_alpha?: boolean; flip_vertically?: boolean }): { width: number; height: number; type: Opaque<\"constant\">; buffer: string } | unknown;",
1897
+ "image\u0000FUNCTION\u0000image.load_buffer\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"table\"],\"isOptional\":false}]": "function load_buffer(buffer: string, options?: { premultiply_alpha?: boolean; flip_vertically?: boolean }): { width: number; height: number; type: Opaque<\"constant\">; buffer: Opaque<\"buffer\"> } | unknown;",
1898
+ "json\u0000FUNCTION\u0000json.decode\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function decode(json: string, options?: { decode_null_as_userdata?: boolean }): Record<string | number, unknown>;",
1899
+ "json\u0000FUNCTION\u0000json.encode\u0000[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function encode(tbl: Record<string | number, unknown>, options?: { encode_empty_table_as_object?: string }): string;",
1900
+ "json\u0000VARIABLE\u0000json.null\u0000": "const _null: unknown;",
1901
+ "label\u0000FUNCTION\u0000label.get_text\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_text(url: string | Hash | Url): string;",
1902
+ "label\u0000FUNCTION\u0000label.set_text\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"number\",\"string\"],\"isOptional\":false}]->[]": "function set_text(url: string | Hash | Url, text: string | number): void;",
1903
+ "label\u0000PROPERTY\u0000color\u0000": "color: Vector4;",
1904
+ "label\u0000PROPERTY\u0000font\u0000": "font: Hash;",
1905
+ "label\u0000PROPERTY\u0000leading\u0000": "leading: number;",
1906
+ "label\u0000PROPERTY\u0000line_break\u0000": "line_break: boolean;",
1907
+ "label\u0000PROPERTY\u0000material\u0000": "material: Hash;",
1908
+ "label\u0000PROPERTY\u0000outline\u0000": "outline: Vector4;",
1909
+ "label\u0000PROPERTY\u0000scale\u0000": "scale: number | Vector3;",
1910
+ "label\u0000PROPERTY\u0000shadow\u0000": "shadow: Vector4;",
1911
+ "label\u0000PROPERTY\u0000size\u0000": "size: Vector3;",
1912
+ "label\u0000PROPERTY\u0000tracking\u0000": "tracking: number;",
1913
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_BUNDLED_RESOURCE_MISMATCH\u0000": "const LIVEUPDATE_BUNDLED_RESOURCE_MISMATCH: number & { readonly __brand: \"liveupdate.LIVEUPDATE_BUNDLED_RESOURCE_MISMATCH\" };",
1914
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_ENGINE_VERSION_MISMATCH\u0000": "const LIVEUPDATE_ENGINE_VERSION_MISMATCH: number & { readonly __brand: \"liveupdate.LIVEUPDATE_ENGINE_VERSION_MISMATCH\" };",
1915
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_FORMAT_ERROR\u0000": "const LIVEUPDATE_FORMAT_ERROR: number & { readonly __brand: \"liveupdate.LIVEUPDATE_FORMAT_ERROR\" };",
1916
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_INVAL\u0000": "const LIVEUPDATE_INVAL: number & { readonly __brand: \"liveupdate.LIVEUPDATE_INVAL\" };",
1917
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_INVALID_HEADER\u0000": "const LIVEUPDATE_INVALID_HEADER: number & { readonly __brand: \"liveupdate.LIVEUPDATE_INVALID_HEADER\" };",
1918
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_INVALID_RESOURCE\u0000": "const LIVEUPDATE_INVALID_RESOURCE: number & { readonly __brand: \"liveupdate.LIVEUPDATE_INVALID_RESOURCE\" };",
1919
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_IO_ERROR\u0000": "const LIVEUPDATE_IO_ERROR: number & { readonly __brand: \"liveupdate.LIVEUPDATE_IO_ERROR\" };",
1920
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_MEM_ERROR\u0000": "const LIVEUPDATE_MEM_ERROR: number & { readonly __brand: \"liveupdate.LIVEUPDATE_MEM_ERROR\" };",
1921
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_OK\u0000": "const LIVEUPDATE_OK: number & { readonly __brand: \"liveupdate.LIVEUPDATE_OK\" };",
1922
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_SCHEME_MISMATCH\u0000": "const LIVEUPDATE_SCHEME_MISMATCH: number & { readonly __brand: \"liveupdate.LIVEUPDATE_SCHEME_MISMATCH\" };",
1923
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_SIGNATURE_MISMATCH\u0000": "const LIVEUPDATE_SIGNATURE_MISMATCH: number & { readonly __brand: \"liveupdate.LIVEUPDATE_SIGNATURE_MISMATCH\" };",
1924
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_UNKNOWN\u0000": "const LIVEUPDATE_UNKNOWN: number & { readonly __brand: \"liveupdate.LIVEUPDATE_UNKNOWN\" };",
1925
+ "liveupdate\u0000CONSTANT\u0000liveupdate.LIVEUPDATE_VERSION_MISMATCH\u0000": "const LIVEUPDATE_VERSION_MISMATCH: number & { readonly __brand: \"liveupdate.LIVEUPDATE_VERSION_MISMATCH\" };",
1926
+ "liveupdate\u0000FUNCTION\u0000liveupdate.add_mount\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"function\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function add_mount(name: string, uri: string, priority: number, callback: (...args: unknown[]) => unknown): number;",
1927
+ "liveupdate\u0000FUNCTION\u0000liveupdate.get_mounts\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_mounts(): { name: string; uri: string; priority: number }[];",
1928
+ "liveupdate\u0000FUNCTION\u0000liveupdate.remove_mount\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function remove_mount(name: string): number;",
1929
+ "model\u0000FUNCTION\u0000model.cancel\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[]": "function cancel(url: string | Hash | Url): void;",
1930
+ "model\u0000FUNCTION\u0000model.get_aabb\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_aabb(url: string | Hash | Url): { min: Vector3; max: Vector3 };",
1931
+ "model\u0000FUNCTION\u0000model.get_go\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_go(url: string | Hash | Url, bone_id: string | Hash): Hash;",
1932
+ "model\u0000FUNCTION\u0000model.get_mesh_aabb\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_mesh_aabb(url: string | Hash | Url): LuaMap<Hash, { min: Vector3; max: Vector3 }>;",
1933
+ "model\u0000FUNCTION\u0000model.get_mesh_enabled\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_mesh_enabled(url: string | Hash | Url, mesh_id: string | Hash | Url): boolean;",
1934
+ "model\u0000FUNCTION\u0000model.play_anim\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"constant\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true},{\"types\":[\"function(self, message_id, message, sender)\"],\"isOptional\":true}]->[]": "function play_anim(url: string | Hash | Url, anim_id: string | Hash, playback: Opaque<\"constant\">, play_properties?: { blend_duration?: number; offset?: number; playback_rate?: number }, complete_function?: (self: unknown, message_id: unknown, message: unknown, sender: unknown) => void): void;",
1935
+ "model\u0000FUNCTION\u0000model.set_mesh_enabled\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_mesh_enabled(url: string | Hash | Url, mesh_id: string | Hash | Url, enabled: boolean): void;",
1936
+ "model\u0000PROPERTY\u0000animation\u0000": "animation: Hash;",
1937
+ "model\u0000PROPERTY\u0000cursor\u0000": "cursor: number;",
1938
+ "model\u0000PROPERTY\u0000material\u0000": "material: Hash;",
1939
+ "model\u0000PROPERTY\u0000playback_rate\u0000": "playback_rate: number;",
1940
+ "model\u0000PROPERTY\u0000textureN\u0000": "textureN: Hash;",
1941
+ "particlefx\u0000CONSTANT\u0000particlefx.EMITTER_STATE_POSTSPAWN\u0000": "const EMITTER_STATE_POSTSPAWN: number & { readonly __brand: \"particlefx.EMITTER_STATE_POSTSPAWN\" };",
1942
+ "particlefx\u0000CONSTANT\u0000particlefx.EMITTER_STATE_PRESPAWN\u0000": "const EMITTER_STATE_PRESPAWN: number & { readonly __brand: \"particlefx.EMITTER_STATE_PRESPAWN\" };",
1943
+ "particlefx\u0000CONSTANT\u0000particlefx.EMITTER_STATE_SLEEPING\u0000": "const EMITTER_STATE_SLEEPING: number & { readonly __brand: \"particlefx.EMITTER_STATE_SLEEPING\" };",
1944
+ "particlefx\u0000CONSTANT\u0000particlefx.EMITTER_STATE_SPAWNING\u0000": "const EMITTER_STATE_SPAWNING: number & { readonly __brand: \"particlefx.EMITTER_STATE_SPAWNING\" };",
1945
+ "particlefx\u0000FUNCTION\u0000particlefx.play\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"function(self, id, emitter, state)\"],\"isOptional\":true}]->[]": "function play(url: string | Hash | Url, emitter_state_function?: (self: unknown, id: unknown, emitter: unknown, state: unknown) => void): void;",
1946
+ "particlefx\u0000FUNCTION\u0000particlefx.reset_constant\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function reset_constant(url: string | Hash | Url, emitter: string | Hash, constant: string | Hash): void;",
1947
+ "particlefx\u0000FUNCTION\u0000particlefx.set_constant\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"vector4\"],\"isOptional\":false}]->[]": "function set_constant(url: string | Hash | Url, emitter: string | Hash, constant: string | Hash, value: Vector4): void;",
1948
+ "particlefx\u0000FUNCTION\u0000particlefx.stop\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function stop(url: string | Hash | Url, options?: { clear?: boolean }): void;",
1949
+ "particlefx\u0000PROPERTY\u0000animation\u0000": "animation: Hash;",
1950
+ "particlefx\u0000PROPERTY\u0000image\u0000": "image: Hash;",
1951
+ "particlefx\u0000PROPERTY\u0000material\u0000": "material: Hash;",
1952
+ "physics\u0000CONSTANT\u0000physics.JOINT_TYPE_FIXED\u0000": "const JOINT_TYPE_FIXED: number & { readonly __brand: \"physics.JOINT_TYPE_FIXED\" };",
1953
+ "physics\u0000CONSTANT\u0000physics.JOINT_TYPE_HINGE\u0000": "const JOINT_TYPE_HINGE: number & { readonly __brand: \"physics.JOINT_TYPE_HINGE\" };",
1954
+ "physics\u0000CONSTANT\u0000physics.JOINT_TYPE_SLIDER\u0000": "const JOINT_TYPE_SLIDER: number & { readonly __brand: \"physics.JOINT_TYPE_SLIDER\" };",
1955
+ "physics\u0000CONSTANT\u0000physics.JOINT_TYPE_SPRING\u0000": "const JOINT_TYPE_SPRING: number & { readonly __brand: \"physics.JOINT_TYPE_SPRING\" };",
1956
+ "physics\u0000CONSTANT\u0000physics.JOINT_TYPE_WELD\u0000": "const JOINT_TYPE_WELD: number & { readonly __brand: \"physics.JOINT_TYPE_WELD\" };",
1957
+ "physics\u0000CONSTANT\u0000physics.JOINT_TYPE_WHEEL\u0000": "const JOINT_TYPE_WHEEL: number & { readonly __brand: \"physics.JOINT_TYPE_WHEEL\" };",
1958
+ "physics\u0000CONSTANT\u0000physics.SHAPE_TYPE_BOX\u0000": "const SHAPE_TYPE_BOX: number & { readonly __brand: \"physics.SHAPE_TYPE_BOX\" };",
1959
+ "physics\u0000CONSTANT\u0000physics.SHAPE_TYPE_CAPSULE\u0000": "const SHAPE_TYPE_CAPSULE: number & { readonly __brand: \"physics.SHAPE_TYPE_CAPSULE\" };",
1960
+ "physics\u0000CONSTANT\u0000physics.SHAPE_TYPE_HULL\u0000": "const SHAPE_TYPE_HULL: number & { readonly __brand: \"physics.SHAPE_TYPE_HULL\" };",
1961
+ "physics\u0000CONSTANT\u0000physics.SHAPE_TYPE_SPHERE\u0000": "const SHAPE_TYPE_SPHERE: number & { readonly __brand: \"physics.SHAPE_TYPE_SPHERE\" };",
1962
+ "physics\u0000FUNCTION\u0000physics.create_joint\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function create_joint(joint_type: number, collisionobject_a: string | Hash | Url, joint_id: string | Hash, position_a: Vector3, collisionobject_b: string | Hash | Url, position_b: Vector3, properties?: { collide_connected?: boolean }): void;",
1963
+ "physics\u0000FUNCTION\u0000physics.destroy_joint\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function destroy_joint(collisionobject: string | Hash | Url, joint_id: string | Hash): void;",
1964
+ "physics\u0000FUNCTION\u0000physics.get_gravity\u0000[]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_gravity(): Vector3;",
1965
+ "physics\u0000FUNCTION\u0000physics.get_group\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function get_group(url: string | Hash | Url): Hash;",
1966
+ "physics\u0000FUNCTION\u0000physics.get_joint_properties\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_joint_properties(collisionobject: string | Hash | Url, joint_id: string | Hash): { collide_connected: boolean };",
1967
+ "physics\u0000FUNCTION\u0000physics.get_joint_reaction_force\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function get_joint_reaction_force(collisionobject: string | Hash | Url, joint_id: string | Hash): Vector3;",
1968
+ "physics\u0000FUNCTION\u0000physics.get_joint_reaction_torque\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_joint_reaction_torque(collisionobject: string | Hash | Url, joint_id: string | Hash): number;",
1969
+ "physics\u0000FUNCTION\u0000physics.get_maskbit\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_maskbit(url: string | Hash | Url, group: string): boolean;",
1970
+ "physics\u0000FUNCTION\u0000physics.get_shape\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_shape(url: string | Hash | Url, shape: string | Hash): { type: number; diameter: number; dimensions: Vector3; diameter: number; height: number };",
1971
+ "physics\u0000FUNCTION\u0000physics.raycast\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"table\"],\"isOptional\":false}]": "function raycast(from: Vector3, to: Vector3, groups: Hash[], options?: { all?: boolean }): { fraction: number; position: Vector3; normal: Vector3; id: Hash; group: Hash; request_id: number }[] | unknown;",
1972
+ "physics\u0000FUNCTION\u0000physics.raycast_async\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true}]->[]": "function raycast_async(from: Vector3, to: Vector3, groups: Hash[], request_id?: number): void;",
1973
+ "physics\u0000FUNCTION\u0000physics.set_event_listener\u0000[{\"types\":[\"function(self, events)\",\"nil\"],\"isOptional\":false}]->[]": "function set_event_listener(callback?: (self: unknown, events: unknown) => void): void;",
1974
+ "physics\u0000FUNCTION\u0000physics.set_gravity\u0000[{\"types\":[\"vector3\"],\"isOptional\":false}]->[]": "function set_gravity(gravity: Vector3): void;",
1975
+ "physics\u0000FUNCTION\u0000physics.set_group\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function set_group(url: string | Hash | Url, group: string): void;",
1976
+ "physics\u0000FUNCTION\u0000physics.set_hflip\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_hflip(url: string | Hash | Url, flip: boolean): void;",
1977
+ "physics\u0000FUNCTION\u0000physics.set_joint_properties\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function set_joint_properties(collisionobject: string | Hash | Url, joint_id: string | Hash, properties: { collide_connected?: boolean }): void;",
1978
+ "physics\u0000FUNCTION\u0000physics.set_maskbit\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_maskbit(url: string | Hash | Url, group: string, maskbit: boolean): void;",
1979
+ "physics\u0000FUNCTION\u0000physics.set_shape\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function set_shape(url: string | Hash | Url, shape: string | Hash, table: { type?: number; diameter?: number; dimensions?: Vector3; diameter?: number; height?: number }): void;",
1980
+ "physics\u0000FUNCTION\u0000physics.set_vflip\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_vflip(url: string | Hash | Url, flip: boolean): void;",
1981
+ "physics\u0000FUNCTION\u0000physics.update_mass\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function update_mass(collisionobject: string | Hash | Url, mass: number): void;",
1982
+ "physics\u0000FUNCTION\u0000physics.wakeup\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[]": "function wakeup(url: string | Hash | Url): void;",
1983
+ "physics\u0000PROPERTY\u0000angular_damping\u0000": "angular_damping: number;",
1984
+ "physics\u0000PROPERTY\u0000angular_velocity\u0000": "angular_velocity: Vector3;",
1985
+ "physics\u0000PROPERTY\u0000linear_damping\u0000": "linear_damping: number;",
1986
+ "physics\u0000PROPERTY\u0000linear_velocity\u0000": "linear_velocity: Vector3;",
1987
+ "physics\u0000PROPERTY\u0000mass\u0000": "mass: number;",
1988
+ "profiler\u0000CONSTANT\u0000profiler.MODE_PAUSE\u0000": "const MODE_PAUSE: number & { readonly __brand: \"profiler.MODE_PAUSE\" };",
1989
+ "profiler\u0000CONSTANT\u0000profiler.MODE_RECORD\u0000": "const MODE_RECORD: number & { readonly __brand: \"profiler.MODE_RECORD\" };",
1990
+ "profiler\u0000CONSTANT\u0000profiler.MODE_RUN\u0000": "const MODE_RUN: number & { readonly __brand: \"profiler.MODE_RUN\" };",
1991
+ "profiler\u0000CONSTANT\u0000profiler.MODE_SHOW_PEAK_FRAME\u0000": "const MODE_SHOW_PEAK_FRAME: number & { readonly __brand: \"profiler.MODE_SHOW_PEAK_FRAME\" };",
1992
+ "profiler\u0000CONSTANT\u0000profiler.VIEW_MODE_FULL\u0000": "const VIEW_MODE_FULL: number & { readonly __brand: \"profiler.VIEW_MODE_FULL\" };",
1993
+ "profiler\u0000CONSTANT\u0000profiler.VIEW_MODE_MINIMIZED\u0000": "const VIEW_MODE_MINIMIZED: number & { readonly __brand: \"profiler.VIEW_MODE_MINIMIZED\" };",
1994
+ "profiler\u0000FUNCTION\u0000profiler.dump_frame\u0000[]->[]": "function dump_frame(): void;",
1995
+ "profiler\u0000FUNCTION\u0000profiler.enable\u0000[{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable(enabled: boolean): void;",
1996
+ "profiler\u0000FUNCTION\u0000profiler.enable_ui\u0000[{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function enable_ui(enabled: boolean): void;",
1997
+ "profiler\u0000FUNCTION\u0000profiler.get_cpu_usage\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_cpu_usage(): number;",
1998
+ "profiler\u0000FUNCTION\u0000profiler.get_memory_usage\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_memory_usage(): number;",
1999
+ "profiler\u0000FUNCTION\u0000profiler.log_text\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function log_text(text: string): void;",
2000
+ "profiler\u0000FUNCTION\u0000profiler.recorded_frame_count\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function recorded_frame_count(): number;",
2001
+ "profiler\u0000FUNCTION\u0000profiler.scope_begin\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function scope_begin(name: string): void;",
2002
+ "profiler\u0000FUNCTION\u0000profiler.scope_end\u0000[]->[]": "function scope_end(): void;",
2003
+ "profiler\u0000FUNCTION\u0000profiler.set_ui_mode\u0000[{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_ui_mode(mode: Opaque<\"constant\">): void;",
2004
+ "profiler\u0000FUNCTION\u0000profiler.set_ui_view_mode\u0000[{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_ui_view_mode(mode: Opaque<\"constant\">): void;",
2005
+ "profiler\u0000FUNCTION\u0000profiler.set_ui_vsync_wait_visible\u0000[{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_ui_vsync_wait_visible(visible: boolean): void;",
2006
+ "profiler\u0000FUNCTION\u0000profiler.view_recorded_frame\u0000[{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function view_recorded_frame(frame_index: { distance?: number; frame?: number }): void;",
2007
+ "push\u0000FUNCTION\u0000push.cancel\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function cancel(id: number): void;",
2008
+ "push\u0000FUNCTION\u0000push.cancel_all_issued\u0000[]->[]": "function cancel_all_issued(): void;",
2009
+ "push\u0000FUNCTION\u0000push.get_all_scheduled\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_all_scheduled(): Record<string | number, unknown>;",
2010
+ "push\u0000FUNCTION\u0000push.get_scheduled\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_scheduled(id: number): Record<string | number, unknown>;",
2011
+ "push\u0000FUNCTION\u0000push.register\u0000[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"function\"],\"isOptional\":false}]->[]": "function register(notifications: number[], callback: (...args: unknown[]) => unknown): void;",
2012
+ "push\u0000FUNCTION\u0000push.schedule\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false}]": "function schedule(time: number, title: string, alert: string, payload: string, notification_settings: { action?: string; badge_count?: number; priority?: number }): LuaMultiReturn<[number, string]>;",
2013
+ "push\u0000FUNCTION\u0000push.set_badge_count\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_badge_count(count: number): void;",
2014
+ "push\u0000FUNCTION\u0000push.set_listener\u0000[{\"types\":[\"function\"],\"isOptional\":false}]->[]": "function set_listener(listener: (...args: unknown[]) => unknown): void;",
2015
+ "render\u0000CONSTANT\u0000render.FRUSTUM_PLANES_ALL\u0000": "const FRUSTUM_PLANES_ALL: number & { readonly __brand: \"render.FRUSTUM_PLANES_ALL\" };",
2016
+ "render\u0000CONSTANT\u0000render.FRUSTUM_PLANES_SIDES\u0000": "const FRUSTUM_PLANES_SIDES: number & { readonly __brand: \"render.FRUSTUM_PLANES_SIDES\" };",
2017
+ "render\u0000CONSTANT\u0000render.RENDER_TARGET_DEFAULT\u0000": "const RENDER_TARGET_DEFAULT: number & { readonly __brand: \"render.RENDER_TARGET_DEFAULT\" };",
2018
+ "render\u0000CONSTANT\u0000render.SORT_BACK_TO_FRONT\u0000": "const SORT_BACK_TO_FRONT: number & { readonly __brand: \"render.SORT_BACK_TO_FRONT\" };",
2019
+ "render\u0000CONSTANT\u0000render.SORT_FRONT_TO_BACK\u0000": "const SORT_FRONT_TO_BACK: number & { readonly __brand: \"render.SORT_FRONT_TO_BACK\" };",
2020
+ "render\u0000CONSTANT\u0000render.SORT_NONE\u0000": "const SORT_NONE: number & { readonly __brand: \"render.SORT_NONE\" };",
2021
+ "render\u0000FUNCTION\u0000render.clear\u0000[{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function clear(buffers: LuaMap<number, number | Vector4>): void;",
2022
+ "render\u0000FUNCTION\u0000render.constant_buffer\u0000[]->[{\"types\":[\"constant_buffer\"],\"isOptional\":false}]": "function constant_buffer(): Opaque<\"constant_buffer\">;",
2023
+ "render\u0000FUNCTION\u0000render.delete_render_target\u0000[{\"types\":[\"render_target\"],\"isOptional\":false}]->[]": "function delete_render_target(render_target: Opaque<\"render_target\">): void;",
2024
+ "render\u0000FUNCTION\u0000render.disable_material\u0000[]->[]": "function disable_material(): void;",
2025
+ "render\u0000FUNCTION\u0000render.disable_state\u0000[{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function disable_state(state: Opaque<\"constant\">): void;",
2026
+ "render\u0000FUNCTION\u0000render.disable_texture\u0000[{\"types\":[\"hash\",\"string\",\"texture\"],\"isOptional\":false}]->[]": "function disable_texture(binding: Opaque<\"texture\"> | string | Hash): void;",
2027
+ "render\u0000FUNCTION\u0000render.dispatch_compute\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function dispatch_compute(x: number, y: number, z: number, options?: { constants?: Opaque<\"constant_buffer\"> }): void;",
2028
+ "render\u0000FUNCTION\u0000render.draw\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function draw(predicate: number, options?: { frustum?: Matrix4; frustum_planes?: number; constants?: Opaque<\"constant_buffer\">; sort_order?: number }): void;",
2029
+ "render\u0000FUNCTION\u0000render.draw_debug3d\u0000[{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function draw_debug3d(options?: { frustum?: Matrix4; frustum_planes?: number }): void;",
2030
+ "render\u0000FUNCTION\u0000render.enable_material\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function enable_material(material_id: string | Hash): void;",
2031
+ "render\u0000FUNCTION\u0000render.enable_state\u0000[{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function enable_state(state: Opaque<\"constant\">): void;",
2032
+ "render\u0000FUNCTION\u0000render.enable_texture\u0000[{\"types\":[\"hash\",\"number\",\"string\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\",\"texture\"],\"isOptional\":false},{\"types\":[\"graphics.BUFFER_TYPE_COLOR0_BIT\",\"graphics.BUFFER_TYPE_COLOR1_BIT\",\"graphics.BUFFER_TYPE_COLOR2_BIT\",\"graphics.BUFFER_TYPE_COLOR3_BIT\",\"graphics.BUFFER_TYPE_DEPTH_BIT\",\"graphics.BUFFER_TYPE_STENCIL_BIT\"],\"isOptional\":true}]->[]": "function enable_texture(binding: number | string | Hash, handle_or_name: Opaque<\"texture\"> | string | Hash, buffer_type?: number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR0_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR1_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR2_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR3_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_DEPTH_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_STENCIL_BIT\" }): void;",
2033
+ "render\u0000FUNCTION\u0000render.get_height\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_height(): number;",
2034
+ "render\u0000FUNCTION\u0000render.get_render_target_height\u0000[{\"types\":[\"render_target\"],\"isOptional\":false},{\"types\":[\"graphics.BUFFER_TYPE_COLOR0_BIT\",\"graphics.BUFFER_TYPE_COLOR1_BIT\",\"graphics.BUFFER_TYPE_COLOR2_BIT\",\"graphics.BUFFER_TYPE_COLOR3_BIT\",\"graphics.BUFFER_TYPE_DEPTH_BIT\",\"graphics.BUFFER_TYPE_STENCIL_BIT\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_render_target_height(render_target: Opaque<\"render_target\">, buffer_type: number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR0_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR1_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR2_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR3_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_DEPTH_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_STENCIL_BIT\" }): number;",
2035
+ "render\u0000FUNCTION\u0000render.get_render_target_width\u0000[{\"types\":[\"render_target\"],\"isOptional\":false},{\"types\":[\"graphics.BUFFER_TYPE_COLOR0_BIT\",\"graphics.BUFFER_TYPE_COLOR1_BIT\",\"graphics.BUFFER_TYPE_COLOR2_BIT\",\"graphics.BUFFER_TYPE_COLOR3_BIT\",\"graphics.BUFFER_TYPE_DEPTH_BIT\",\"graphics.BUFFER_TYPE_STENCIL_BIT\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_render_target_width(render_target: Opaque<\"render_target\">, buffer_type: number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR0_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR1_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR2_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_COLOR3_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_DEPTH_BIT\" } | number & { readonly __brand: \"graphics.BUFFER_TYPE_STENCIL_BIT\" }): number;",
2036
+ "render\u0000FUNCTION\u0000render.get_width\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_width(): number;",
2037
+ "render\u0000FUNCTION\u0000render.get_window_height\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_window_height(): number;",
2038
+ "render\u0000FUNCTION\u0000render.get_window_width\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_window_width(): number;",
2039
+ "render\u0000FUNCTION\u0000render.predicate\u0000[{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function predicate(tags: (string | Hash)[]): number;",
2040
+ "render\u0000FUNCTION\u0000render.render_target\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"render_target\"],\"isOptional\":false}]": "function render_target(name: string, parameters: Record<string | number, unknown>): Opaque<\"render_target\">;",
2041
+ "render\u0000FUNCTION\u0000render.set_blend_func\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_blend_func(source_factor: number, destination_factor: number): void;",
2042
+ "render\u0000FUNCTION\u0000render.set_camera\u0000[{\"types\":[\"nil\",\"number\",\"url\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function set_camera(camera?: Url | number, options?: { use_frustum?: boolean }): void;",
2043
+ "render\u0000FUNCTION\u0000render.set_color_mask\u0000[{\"types\":[\"boolean\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_color_mask(red: boolean, green: boolean, blue: boolean, alpha: boolean): void;",
2044
+ "render\u0000FUNCTION\u0000render.set_compute\u0000[{\"types\":[\"hash\",\"nil\",\"string\"],\"isOptional\":false}]->[]": "function set_compute(compute?: string | Hash): void;",
2045
+ "render\u0000FUNCTION\u0000render.set_cull_face\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_cull_face(face_type: number): void;",
2046
+ "render\u0000FUNCTION\u0000render.set_depth_func\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_depth_func(func: number): void;",
2047
+ "render\u0000FUNCTION\u0000render.set_depth_mask\u0000[{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_depth_mask(depth: boolean): void;",
2048
+ "render\u0000FUNCTION\u0000render.set_listener\u0000[{\"types\":[\"function(self, event_type)\",\"nil\"],\"isOptional\":false}]->[]": "function set_listener(callback?: (self: unknown, event_type: unknown) => void): void;",
2049
+ "render\u0000FUNCTION\u0000render.set_polygon_offset\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_polygon_offset(factor: number, units: number): void;",
2050
+ "render\u0000FUNCTION\u0000render.set_projection\u0000[{\"types\":[\"matrix4\"],\"isOptional\":false}]->[]": "function set_projection(matrix: Matrix4): void;",
2051
+ "render\u0000FUNCTION\u0000render.set_render_target\u0000[{\"types\":[\"render_target\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function set_render_target(render_target: Opaque<\"render_target\">, options?: { transient?: Record<string | number, unknown> }): void;",
2052
+ "render\u0000FUNCTION\u0000render.set_render_target_size\u0000[{\"types\":[\"render_target\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_render_target_size(render_target: Opaque<\"render_target\">, width: number, height: number): void;",
2053
+ "render\u0000FUNCTION\u0000render.set_stencil_func\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_stencil_func(func: number, ref: number, mask: number): void;",
2054
+ "render\u0000FUNCTION\u0000render.set_stencil_mask\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_stencil_mask(mask: number): void;",
2055
+ "render\u0000FUNCTION\u0000render.set_stencil_op\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_stencil_op(sfail: number, dpfail: number, dppass: number): void;",
2056
+ "render\u0000FUNCTION\u0000render.set_view\u0000[{\"types\":[\"matrix4\"],\"isOptional\":false}]->[]": "function set_view(matrix: Matrix4): void;",
2057
+ "render\u0000FUNCTION\u0000render.set_viewport\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_viewport(x: number, y: number, width: number, height: number): void;",
2058
+ "render\u0000TYPEDEF\u0000constant_buffer\u0000": "type constant_buffer = Opaque<\"constant_buffer\">;",
2059
+ "render\u0000TYPEDEF\u0000render_target\u0000": "type render_target = Opaque<\"render_target\">;",
2060
+ "render\u0000TYPEDEF\u0000texture\u0000": "type texture = Opaque<\"texture\">;",
2061
+ "resource\u0000FUNCTION\u0000resource.atlas\u0000[{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function atlas(path?: string): Hash;",
2062
+ "resource\u0000FUNCTION\u0000resource.buffer\u0000[{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function buffer(path?: string): Hash;",
2063
+ "resource\u0000FUNCTION\u0000resource.create_atlas\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function create_atlas(path: string, table: { texture?: string | Hash; animations?: { id?: string; width?: number; height?: number; frame_start?: number; frame_end?: number; playback?: Opaque<\"constant\">; fps?: number; flip_vertical?: boolean; flip_horizontal?: boolean }[]; geometries?: { id?: string; width?: number; height?: number; pivot_x?: number; pivot_y?: number; rotated?: boolean }[]; vertices?: number[]; uvs?: number[]; indices?: number[] }): Hash;",
2064
+ "resource\u0000FUNCTION\u0000resource.create_buffer\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function create_buffer(path: string, table?: { buffer?: Opaque<\"buffer\">; transfer_ownership?: boolean }): Hash;",
2065
+ "resource\u0000FUNCTION\u0000resource.create_sound_data\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function create_sound_data(path: string, options?: { data?: string; filesize?: number; partial?: boolean }): Hash;",
2066
+ "resource\u0000FUNCTION\u0000resource.create_texture\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"buffer\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function create_texture(path: string, table: { type?: number; width?: number; height?: number; depth?: number; format?: number; flags?: number; max_mipmaps?: number; compression_type?: number }, buffer: Opaque<\"buffer\">): Hash;",
2067
+ "resource\u0000FUNCTION\u0000resource.create_texture_async\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"buffer\"],\"isOptional\":false},{\"types\":[\"function\"],\"isOptional\":false}]->[{\"types\":[\"hash\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]": "function create_texture_async(path: string | Hash, table: { type?: number; width?: number; height?: number; depth?: number; format?: number; flags?: number; max_mipmaps?: number; compression_type?: number }, buffer: Opaque<\"buffer\">, callback: (...args: unknown[]) => unknown): LuaMultiReturn<[Hash, number]>;",
2068
+ "resource\u0000FUNCTION\u0000resource.font\u0000[{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function font(path?: string): Hash;",
2069
+ "resource\u0000FUNCTION\u0000resource.get_atlas\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_atlas(path: Hash | string): { texture: string | Hash; animations: { id: string; width: number; height: number; frame_start: number; frame_end: number; playback: Opaque<\"constant\">; fps: number; flip_vertical: boolean; flip_horizontal: boolean }[]; geometries: { vertices: number[]; uvs: number[]; indices: number[] }[] };",
2070
+ "resource\u0000FUNCTION\u0000resource.get_buffer\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"buffer\"],\"isOptional\":false}]": "function get_buffer(path: Hash | string): Opaque<\"buffer\">;",
2071
+ "resource\u0000FUNCTION\u0000resource.get_render_target_info\u0000[{\"types\":[\"hash\",\"number\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_render_target_info(path: Hash | string | number): { handle: number; width: number; height: number; depth: number; mipmaps: number; type: number; buffer_type: number; texture: Hash };",
2072
+ "resource\u0000FUNCTION\u0000resource.get_text_metrics\u0000[{\"types\":[\"hash\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_text_metrics(url: Hash, text: string, options?: { width?: number; leading?: number; tracking?: number; line_break?: boolean }): { width: number; height: number; max_ascent: number; max_descent: number };",
2073
+ "resource\u0000FUNCTION\u0000resource.get_texture_info\u0000[{\"types\":[\"hash\",\"number\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_texture_info(path: Hash | string | number): { handle: number; width: number; height: number; depth: number; page_count: number; mipmaps: number; flags: number; type: number };",
2074
+ "resource\u0000FUNCTION\u0000resource.load\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"buffer\"],\"isOptional\":false}]": "function load(path: string): Opaque<\"buffer\">;",
2075
+ "resource\u0000FUNCTION\u0000resource.material\u0000[{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function material(path?: string): Hash;",
2076
+ "resource\u0000FUNCTION\u0000resource.release\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[]": "function release(path: Hash | string): void;",
2077
+ "resource\u0000FUNCTION\u0000resource.render_target\u0000[{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function render_target(path?: string): Hash;",
2078
+ "resource\u0000FUNCTION\u0000resource.set\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"buffer\"],\"isOptional\":false}]->[]": "function set(path: string | Hash, buffer: Opaque<\"buffer\">): void;",
2079
+ "resource\u0000FUNCTION\u0000resource.set_atlas\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function set_atlas(path: Hash | string, table: { texture?: string | Hash; animations?: { id?: string; width?: number; height?: number; frame_start?: number; frame_end?: number; playback?: Opaque<\"constant\">; fps?: number; flip_vertical?: boolean; flip_horizontal?: boolean }[]; geometries?: { vertices?: number[]; uvs?: number[]; indices?: number[] }[]; vertices?: number[]; uvs?: number[]; indices?: number[] }): void;",
2080
+ "resource\u0000FUNCTION\u0000resource.set_buffer\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"buffer\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function set_buffer(path: Hash | string, buffer: Opaque<\"buffer\">, table?: { transfer_ownership?: boolean }): void;",
2081
+ "resource\u0000FUNCTION\u0000resource.set_sound\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function set_sound(path: Hash | string, buffer: string): void;",
2082
+ "resource\u0000FUNCTION\u0000resource.set_texture\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"buffer\"],\"isOptional\":false}]->[]": "function set_texture(path: Hash | string, table: { type?: number; width?: number; height?: number; format?: number; x?: number; y?: number; z?: number; page?: number; mipmap?: number; compression_type?: number }, buffer: Opaque<\"buffer\">): void;",
2083
+ "resource\u0000FUNCTION\u0000resource.texture\u0000[{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function texture(path?: string): Hash;",
2084
+ "resource\u0000FUNCTION\u0000resource.tile_source\u0000[{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"hash\"],\"isOptional\":false}]": "function tile_source(path?: string): Hash;",
2085
+ "socket\u0000CONSTANT\u0000socket._SETSIZE\u0000": "const _SETSIZE: number & { readonly __brand: \"socket._SETSIZE\" };",
2086
+ "socket\u0000CONSTANT\u0000socket._VERSION\u0000": "const _VERSION: number & { readonly __brand: \"socket._VERSION\" };",
2087
+ "socket\u0000FUNCTION\u0000client:close\u0000[]->[]": "close(): void;",
2088
+ "socket\u0000FUNCTION\u0000client:dirty\u0000[]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "dirty(): boolean;",
2089
+ "socket\u0000FUNCTION\u0000client:getfd\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "getfd(): number;",
2090
+ "socket\u0000FUNCTION\u0000client:getoption\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"any\",\"nil\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "getoption(option: string): LuaMultiReturn<[unknown, string | unknown]>;",
2091
+ "socket\u0000FUNCTION\u0000client:getpeername\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getpeername(): string;",
2092
+ "socket\u0000FUNCTION\u0000client:getsockname\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getsockname(): string;",
2093
+ "socket\u0000FUNCTION\u0000client:getstats\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getstats(): string;",
2094
+ "socket\u0000FUNCTION\u0000client:receive\u0000[{\"types\":[\"number\",\"string\"],\"isOptional\":true},{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "receive(pattern?: string | number, prefix?: string): LuaMultiReturn<[string | unknown, string | unknown, string | unknown]>;",
2095
+ "socket\u0000FUNCTION\u0000client:send\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true},{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"nil\",\"number\"],\"isOptional\":false}]": "send(data: string, i?: number, j?: number): LuaMultiReturn<[number | unknown, string | unknown, number | unknown]>;",
2096
+ "socket\u0000FUNCTION\u0000client:setfd\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "setfd(handle: number): void;",
2097
+ "socket\u0000FUNCTION\u0000client:setoption\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"any\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "setoption(option: string, value?: unknown): LuaMultiReturn<[number | unknown, string | unknown]>;",
2098
+ "socket\u0000FUNCTION\u0000client:setstats\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false}]": "setstats(received: number, sent: number, age: number): number | unknown;",
2099
+ "socket\u0000FUNCTION\u0000client:settimeout\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":true}]->[]": "settimeout(value: number, mode?: string): void;",
2100
+ "socket\u0000FUNCTION\u0000client:shutdown\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "shutdown(mode: string): number;",
2101
+ "socket\u0000FUNCTION\u0000connected:close\u0000[]->[]": "close(): void;",
2102
+ "socket\u0000FUNCTION\u0000connected:getoption\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"any\",\"nil\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "getoption(option: string): LuaMultiReturn<[unknown, string | unknown]>;",
2103
+ "socket\u0000FUNCTION\u0000connected:getpeername\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getpeername(): string;",
2104
+ "socket\u0000FUNCTION\u0000connected:getsockname\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getsockname(): string;",
2105
+ "socket\u0000FUNCTION\u0000connected:receive\u0000[{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "receive(size?: number): LuaMultiReturn<[string | unknown, string | unknown]>;",
2106
+ "socket\u0000FUNCTION\u0000connected:send\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "send(datagram: string): LuaMultiReturn<[number | unknown, string | unknown]>;",
2107
+ "socket\u0000FUNCTION\u0000connected:setoption\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"any\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "setoption(option: string, value?: unknown): LuaMultiReturn<[number | unknown, string | unknown]>;",
2108
+ "socket\u0000FUNCTION\u0000connected:setpeername\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "setpeername(arg0: string): LuaMultiReturn<[number | unknown, string | unknown]>;",
2109
+ "socket\u0000FUNCTION\u0000connected:settimeout\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "settimeout(value: number): void;",
2110
+ "socket\u0000FUNCTION\u0000master:bind\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "bind(address: string, port: number): LuaMultiReturn<[number | unknown, string | unknown]>;",
2111
+ "socket\u0000FUNCTION\u0000master:close\u0000[]->[]": "close(): void;",
2112
+ "socket\u0000FUNCTION\u0000master:connect\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "connect(address: string, port: number): LuaMultiReturn<[number | unknown, string | unknown]>;",
2113
+ "socket\u0000FUNCTION\u0000master:dirty\u0000[]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "dirty(): boolean;",
2114
+ "socket\u0000FUNCTION\u0000master:getfd\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "getfd(): number;",
2115
+ "socket\u0000FUNCTION\u0000master:getsockname\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getsockname(): string;",
2116
+ "socket\u0000FUNCTION\u0000master:getstats\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getstats(): string;",
2117
+ "socket\u0000FUNCTION\u0000master:listen\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "listen(backlog: number): LuaMultiReturn<[number | unknown, string | unknown]>;",
2118
+ "socket\u0000FUNCTION\u0000master:setfd\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "setfd(handle: number): void;",
2119
+ "socket\u0000FUNCTION\u0000master:setstats\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false}]": "setstats(received: number, sent: number, age: number): number | unknown;",
2120
+ "socket\u0000FUNCTION\u0000master:settimeout\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":true}]->[]": "settimeout(value: number, mode?: string): void;",
2121
+ "socket\u0000FUNCTION\u0000server:accept\u0000[]->[{\"types\":[\"client\",\"nil\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "accept(): LuaMultiReturn<[client | unknown, string | unknown]>;",
2122
+ "socket\u0000FUNCTION\u0000server:close\u0000[]->[]": "close(): void;",
2123
+ "socket\u0000FUNCTION\u0000server:dirty\u0000[]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "dirty(): boolean;",
2124
+ "socket\u0000FUNCTION\u0000server:getfd\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "getfd(): number;",
2125
+ "socket\u0000FUNCTION\u0000server:getoption\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"any\",\"nil\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "getoption(option: string): LuaMultiReturn<[unknown, string | unknown]>;",
2126
+ "socket\u0000FUNCTION\u0000server:getsockname\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getsockname(): string;",
2127
+ "socket\u0000FUNCTION\u0000server:getstats\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getstats(): string;",
2128
+ "socket\u0000FUNCTION\u0000server:setfd\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "setfd(handle: number): void;",
2129
+ "socket\u0000FUNCTION\u0000server:setoption\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"any\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "setoption(option: string, value?: unknown): LuaMultiReturn<[number | unknown, string | unknown]>;",
2130
+ "socket\u0000FUNCTION\u0000server:setstats\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false}]": "setstats(received: number, sent: number, age: number): number | unknown;",
2131
+ "socket\u0000FUNCTION\u0000server:settimeout\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":true}]->[]": "settimeout(value: number, mode?: string): void;",
2132
+ "socket\u0000FUNCTION\u0000socket.connect\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":true},{\"types\":[\"number\"],\"isOptional\":true},{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"client\",\"nil\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function connect(address: string, port: number, locaddr?: string, locport?: number, family?: string): LuaMultiReturn<[client | unknown, string | unknown]>;",
2133
+ "socket\u0000FUNCTION\u0000socket.dns.getaddrinfo\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"table\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function getaddrinfo(address: string): LuaMultiReturn<[Record<string | number, unknown> | unknown, string | unknown]>;",
2134
+ "socket\u0000FUNCTION\u0000socket.dns.gethostname\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function gethostname(): string;",
2135
+ "socket\u0000FUNCTION\u0000socket.dns.getnameinfo\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"table\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function getnameinfo(address: string): LuaMultiReturn<[Record<string | number, unknown> | unknown, string | unknown]>;",
2136
+ "socket\u0000FUNCTION\u0000socket.dns.tohostname\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"string\",\"table\"],\"isOptional\":false}]": "function tohostname(address: string): LuaMultiReturn<[string | unknown, Record<string | number, unknown> | string]>;",
2137
+ "socket\u0000FUNCTION\u0000socket.dns.toip\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"string\",\"table\"],\"isOptional\":false}]": "function toip(address: string): LuaMultiReturn<[string | unknown, Record<string | number, unknown> | string]>;",
2138
+ "socket\u0000FUNCTION\u0000socket.gettime\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function gettime(): number;",
2139
+ "socket\u0000FUNCTION\u0000socket.newtry\u0000[{\"types\":[\"function()\"],\"isOptional\":false}]->[{\"types\":[\"function\"],\"isOptional\":false}]": "function newtry(finalizer: () => void): (...args: unknown[]) => unknown;",
2140
+ "socket\u0000FUNCTION\u0000socket.protect\u0000[{\"types\":[\"function\"],\"isOptional\":false}]->[{\"types\":[\"function(function())\"],\"isOptional\":false}]": "function protect(func: (...args: unknown[]) => unknown): (arg0: unknown) => void;",
2141
+ "socket\u0000FUNCTION\u0000socket.select\u0000[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function select(recvt: (client | master | unconnected)[], sendt: (client | master | unconnected)[], timeout?: number): LuaMultiReturn<[(client | master | unconnected)[], (client | master | unconnected)[], string | unknown]>;",
2142
+ "socket\u0000FUNCTION\u0000socket.skip\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"any\"],\"isOptional\":true},{\"types\":[\"any\"],\"isOptional\":true},{\"types\":[\"any\"],\"isOptional\":true}]->[{\"types\":[\"any\",\"nil\"],\"isOptional\":false},{\"types\":[\"any\",\"nil\"],\"isOptional\":false},{\"types\":[\"any\",\"nil\"],\"isOptional\":false}]": "function skip(d: number, ret1?: unknown, ret2?: unknown, retN?: unknown): LuaMultiReturn<[unknown, unknown, unknown]>;",
2143
+ "socket\u0000FUNCTION\u0000socket.sleep\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function sleep(time: number): void;",
2144
+ "socket\u0000FUNCTION\u0000socket.tcp\u0000[]->[{\"types\":[\"master\",\"nil\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function tcp(): LuaMultiReturn<[master | unknown, string | unknown]>;",
2145
+ "socket\u0000FUNCTION\u0000socket.tcp6\u0000[]->[{\"types\":[\"master\",\"nil\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function tcp6(): LuaMultiReturn<[master | unknown, string | unknown]>;",
2146
+ "socket\u0000FUNCTION\u0000socket.udp\u0000[]->[{\"types\":[\"nil\",\"unconnected\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function udp(): LuaMultiReturn<[unconnected | unknown, string | unknown]>;",
2147
+ "socket\u0000FUNCTION\u0000socket.udp6\u0000[]->[{\"types\":[\"nil\",\"unconnected\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function udp6(): LuaMultiReturn<[unconnected | unknown, string | unknown]>;",
2148
+ "socket\u0000FUNCTION\u0000unconnected:close\u0000[]->[]": "close(): void;",
2149
+ "socket\u0000FUNCTION\u0000unconnected:getoption\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"any\",\"nil\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "getoption(option: string): LuaMultiReturn<[unknown, string | unknown]>;",
2150
+ "socket\u0000FUNCTION\u0000unconnected:getsockname\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "getsockname(): string;",
2151
+ "socket\u0000FUNCTION\u0000unconnected:receive\u0000[{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "receive(size?: number): LuaMultiReturn<[string | unknown, string | unknown]>;",
2152
+ "socket\u0000FUNCTION\u0000unconnected:receivefrom\u0000[{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"nil\",\"number\"],\"isOptional\":false}]": "receivefrom(size?: number): LuaMultiReturn<[string | unknown, string, number | unknown]>;",
2153
+ "socket\u0000FUNCTION\u0000unconnected:sendto\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "sendto(datagram: string, ip: string, port: number): LuaMultiReturn<[number | unknown, string | unknown]>;",
2154
+ "socket\u0000FUNCTION\u0000unconnected:setoption\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"any\"],\"isOptional\":true}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "setoption(option: string, value?: unknown): LuaMultiReturn<[number | unknown, string | unknown]>;",
2155
+ "socket\u0000FUNCTION\u0000unconnected:setpeername\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "setpeername(address: string, port: number): LuaMultiReturn<[number | unknown, string | unknown]>;",
2156
+ "socket\u0000FUNCTION\u0000unconnected:setsockname\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"number\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "setsockname(address: string, port: number): LuaMultiReturn<[number | unknown, string | unknown]>;",
2157
+ "socket\u0000FUNCTION\u0000unconnected:settimeout\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "settimeout(value: number): void;",
2158
+ "sound\u0000FUNCTION\u0000sound.get_group_gain\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_group_gain(group: string | Hash): number;",
2159
+ "sound\u0000FUNCTION\u0000sound.get_group_name\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_group_name(group: string | Hash): string;",
2160
+ "sound\u0000FUNCTION\u0000sound.get_groups\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_groups(): Hash[];",
2161
+ "sound\u0000FUNCTION\u0000sound.get_peak\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]": "function get_peak(group: string | Hash, window: number): LuaMultiReturn<[number, number]>;",
2162
+ "sound\u0000FUNCTION\u0000sound.get_rms\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]": "function get_rms(group: string | Hash, window: number): LuaMultiReturn<[number, number]>;",
2163
+ "sound\u0000FUNCTION\u0000sound.is_music_playing\u0000[]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_music_playing(): boolean;",
2164
+ "sound\u0000FUNCTION\u0000sound.is_phone_call_active\u0000[]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_phone_call_active(): boolean;",
2165
+ "sound\u0000FUNCTION\u0000sound.pause\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function pause(url: string | Hash | Url, pause: boolean): void;",
2166
+ "sound\u0000FUNCTION\u0000sound.play\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true},{\"types\":[\"function(self, message_id, message, sender)\"],\"isOptional\":true}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function play(url: string | Hash | Url, play_properties?: { delay?: number; gain?: number; pan?: number; speed?: number; start_time?: number; start_frame?: number }, complete_function?: (self: unknown, message_id: unknown, message: unknown, sender: unknown) => void): number;",
2167
+ "sound\u0000FUNCTION\u0000sound.set_gain\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true}]->[]": "function set_gain(url: string | Hash | Url, gain?: number): void;",
2168
+ "sound\u0000FUNCTION\u0000sound.set_group_gain\u0000[{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_group_gain(group: string | Hash, gain: number): void;",
2169
+ "sound\u0000FUNCTION\u0000sound.set_pan\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true}]->[]": "function set_pan(url: string | Hash | Url, pan?: number): void;",
2170
+ "sound\u0000FUNCTION\u0000sound.stop\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function stop(url: string | Hash | Url, stop_properties?: { play_id?: number }): void;",
2171
+ "sound\u0000PROPERTY\u0000gain\u0000": "gain: number;",
2172
+ "sound\u0000PROPERTY\u0000pan\u0000": "pan: number;",
2173
+ "sound\u0000PROPERTY\u0000sound\u0000": "sound: Hash;",
2174
+ "sound\u0000PROPERTY\u0000speed\u0000": "speed: number;",
2175
+ "sprite\u0000FUNCTION\u0000sprite.play_flipbook\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"function(self, message_id, message, sender)\"],\"isOptional\":true},{\"types\":[\"table\"],\"isOptional\":true}]->[]": "function play_flipbook(url: string | Hash | Url, id: string | Hash, complete_function?: (self: unknown, message_id: unknown, message: unknown, sender: unknown) => void, play_properties?: { offset?: number; playback_rate?: number }): void;",
2176
+ "sprite\u0000FUNCTION\u0000sprite.set_hflip\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_hflip(url: string | Hash | Url, flip: boolean): void;",
2177
+ "sprite\u0000FUNCTION\u0000sprite.set_vflip\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_vflip(url: string | Hash | Url, flip: boolean): void;",
2178
+ "sprite\u0000PROPERTY\u0000animation\u0000": "animation: Hash;",
2179
+ "sprite\u0000PROPERTY\u0000cursor\u0000": "cursor: number;",
2180
+ "sprite\u0000PROPERTY\u0000frame_count\u0000": "frame_count: Hash;",
2181
+ "sprite\u0000PROPERTY\u0000image\u0000": "image: Hash;",
2182
+ "sprite\u0000PROPERTY\u0000material\u0000": "material: Hash;",
2183
+ "sprite\u0000PROPERTY\u0000playback_rate\u0000": "playback_rate: number;",
2184
+ "sprite\u0000PROPERTY\u0000scale\u0000": "scale: Vector3;",
2185
+ "sprite\u0000PROPERTY\u0000size\u0000": "size: Vector3;",
2186
+ "sprite\u0000PROPERTY\u0000slice\u0000": "slice: Vector4;",
2187
+ "sys\u0000CONSTANT\u0000sys.NETWORK_CONNECTED\u0000": "const NETWORK_CONNECTED: number & { readonly __brand: \"sys.NETWORK_CONNECTED\" };",
2188
+ "sys\u0000CONSTANT\u0000sys.NETWORK_CONNECTED_CELLULAR\u0000": "const NETWORK_CONNECTED_CELLULAR: number & { readonly __brand: \"sys.NETWORK_CONNECTED_CELLULAR\" };",
2189
+ "sys\u0000CONSTANT\u0000sys.NETWORK_DISCONNECTED\u0000": "const NETWORK_DISCONNECTED: number & { readonly __brand: \"sys.NETWORK_DISCONNECTED\" };",
2190
+ "sys\u0000CONSTANT\u0000sys.REQUEST_STATUS_ERROR_IO_ERROR\u0000": "const REQUEST_STATUS_ERROR_IO_ERROR: number & { readonly __brand: \"sys.REQUEST_STATUS_ERROR_IO_ERROR\" };",
2191
+ "sys\u0000CONSTANT\u0000sys.REQUEST_STATUS_ERROR_NOT_FOUND\u0000": "const REQUEST_STATUS_ERROR_NOT_FOUND: number & { readonly __brand: \"sys.REQUEST_STATUS_ERROR_NOT_FOUND\" };",
2192
+ "sys\u0000CONSTANT\u0000sys.REQUEST_STATUS_FINISHED\u0000": "const REQUEST_STATUS_FINISHED: number & { readonly __brand: \"sys.REQUEST_STATUS_FINISHED\" };",
2193
+ "sys\u0000FUNCTION\u0000sys.deserialize\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function deserialize(buffer: string): Record<string | number, unknown>;",
2194
+ "sys\u0000FUNCTION\u0000sys.exists\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function exists(path: string): boolean;",
2195
+ "sys\u0000FUNCTION\u0000sys.exit\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function exit(code: number): void;",
2196
+ "sys\u0000FUNCTION\u0000sys.get_application_info\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_application_info(app_string: string): { installed: boolean };",
2197
+ "sys\u0000FUNCTION\u0000sys.get_application_path\u0000[]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_application_path(): string;",
2198
+ "sys\u0000FUNCTION\u0000sys.get_config_boolean\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":true}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_config_boolean(key: string, default_value?: boolean): boolean;",
2199
+ "sys\u0000FUNCTION\u0000sys.get_config_int\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_config_int(key: string, default_value?: number): number;",
2200
+ "sys\u0000FUNCTION\u0000sys.get_config_number\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_config_number(key: string, default_value?: number): number;",
2201
+ "sys\u0000FUNCTION\u0000sys.get_config_string\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":true}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_config_string(key: string, default_value?: string): string;",
2202
+ "sys\u0000FUNCTION\u0000sys.get_connectivity\u0000[]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_connectivity(): Opaque<\"constant\">;",
2203
+ "sys\u0000FUNCTION\u0000sys.get_engine_info\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_engine_info(): { version: string; version_sha1: string; is_debug: boolean };",
2204
+ "sys\u0000FUNCTION\u0000sys.get_host_path\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_host_path(filename: string): string;",
2205
+ "sys\u0000FUNCTION\u0000sys.get_ifaddrs\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_ifaddrs(): { name: string; address: string; mac: string; up: boolean; running: boolean }[];",
2206
+ "sys\u0000FUNCTION\u0000sys.get_save_file\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function get_save_file(application_id: string, file_name: string): string;",
2207
+ "sys\u0000FUNCTION\u0000sys.get_sys_info\u0000[{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_sys_info(options?: { ignore_secure?: boolean }): { device_model: string; manufacturer: string; system_name: string; system_version: string; api_version: string; language: string; device_language: string; territory: string; gmt_offset: number; device_ident: string; user_agent: string };",
2208
+ "sys\u0000FUNCTION\u0000sys.load\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function load(filename: string): Record<string | number, unknown>;",
2209
+ "sys\u0000FUNCTION\u0000sys.load_buffer\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"buffer\"],\"isOptional\":false}]": "function load_buffer(path: string): Opaque<\"buffer\">;",
2210
+ "sys\u0000FUNCTION\u0000sys.load_buffer_async\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"function(self, request_id, result)\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function load_buffer_async(path: string, status_callback: (self: unknown, request_id: unknown, result: unknown) => void): number;",
2211
+ "sys\u0000FUNCTION\u0000sys.load_resource\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"string\"],\"isOptional\":false},{\"types\":[\"nil\",\"string\"],\"isOptional\":false}]": "function load_resource(filename: string): LuaMultiReturn<[string | unknown, string | unknown]>;",
2212
+ "sys\u0000FUNCTION\u0000sys.open_url\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":true}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function open_url(url: string, attributes?: { target?: string }): boolean;",
2213
+ "sys\u0000FUNCTION\u0000sys.reboot\u0000[{\"types\":[\"string\"],\"isOptional\":true},{\"types\":[\"string\"],\"isOptional\":true},{\"types\":[\"string\"],\"isOptional\":true},{\"types\":[\"string\"],\"isOptional\":true},{\"types\":[\"string\"],\"isOptional\":true},{\"types\":[\"string\"],\"isOptional\":true}]->[]": "function reboot(arg1?: string, arg2?: string, arg3?: string, arg4?: string, arg5?: string, arg6?: string): void;",
2214
+ "sys\u0000FUNCTION\u0000sys.save\u0000[{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function save(filename: string, table: Record<string | number, unknown>): void;",
2215
+ "sys\u0000FUNCTION\u0000sys.serialize\u0000[{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function serialize(table: Record<string | number, unknown>): string;",
2216
+ "sys\u0000FUNCTION\u0000sys.set_connectivity_host\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function set_connectivity_host(host: string): void;",
2217
+ "sys\u0000FUNCTION\u0000sys.set_engine_throttle\u0000[{\"types\":[\"boolean\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_engine_throttle(enable: boolean, cooldown: number): void;",
2218
+ "sys\u0000FUNCTION\u0000sys.set_error_handler\u0000[{\"types\":[\"function(source, message, traceback)\"],\"isOptional\":false}]->[]": "function set_error_handler(error_handler: (source: unknown, message: unknown, traceback: unknown) => void): void;",
2219
+ "sys\u0000FUNCTION\u0000sys.set_render_enable\u0000[{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_render_enable(enable: boolean): void;",
2220
+ "sys\u0000FUNCTION\u0000sys.set_update_frequency\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_update_frequency(frequency: number): void;",
2221
+ "sys\u0000FUNCTION\u0000sys.set_vsync_swap_interval\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_vsync_swap_interval(swap_interval: number): void;",
2222
+ "tilemap\u0000CONSTANT\u0000tilemap.H_FLIP\u0000": "const H_FLIP: number & { readonly __brand: \"tilemap.H_FLIP\" };",
2223
+ "tilemap\u0000CONSTANT\u0000tilemap.ROTATE_180\u0000": "const ROTATE_180: number & { readonly __brand: \"tilemap.ROTATE_180\" };",
2224
+ "tilemap\u0000CONSTANT\u0000tilemap.ROTATE_270\u0000": "const ROTATE_270: number & { readonly __brand: \"tilemap.ROTATE_270\" };",
2225
+ "tilemap\u0000CONSTANT\u0000tilemap.ROTATE_90\u0000": "const ROTATE_90: number & { readonly __brand: \"tilemap.ROTATE_90\" };",
2226
+ "tilemap\u0000CONSTANT\u0000tilemap.V_FLIP\u0000": "const V_FLIP: number & { readonly __brand: \"tilemap.V_FLIP\" };",
2227
+ "tilemap\u0000FUNCTION\u0000tilemap.get_bounds\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]": "function get_bounds(url: string | Hash | Url): LuaMultiReturn<[number, number, number, number]>;",
2228
+ "tilemap\u0000FUNCTION\u0000tilemap.get_tile\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_tile(url: string | Hash | Url, layer: string | Hash, x: number, y: number): number;",
2229
+ "tilemap\u0000FUNCTION\u0000tilemap.get_tile_info\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_tile_info(url: string | Hash | Url, layer: string | Hash, x: number, y: number): { index: number; h_flip: boolean; v_flip: boolean; rotate_90: boolean };",
2230
+ "tilemap\u0000FUNCTION\u0000tilemap.get_tiles\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false}]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_tiles(url: string | Hash | Url, layer: string | Hash): LuaMap<number, LuaMap<number, number>>;",
2231
+ "tilemap\u0000FUNCTION\u0000tilemap.set_tile\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":true}]->[]": "function set_tile(url: string | Hash | Url, layer: string | Hash, x: number, y: number, tile: number, transform_bitmask?: number): void;",
2232
+ "tilemap\u0000FUNCTION\u0000tilemap.set_visible\u0000[{\"types\":[\"hash\",\"string\",\"url\"],\"isOptional\":false},{\"types\":[\"hash\",\"string\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_visible(url: string | Hash | Url, layer: string | Hash, visible: boolean): void;",
2233
+ "tilemap\u0000PROPERTY\u0000material\u0000": "material: Hash;",
2234
+ "tilemap\u0000PROPERTY\u0000tile_source\u0000": "tile_source: Hash;",
2235
+ "timer\u0000CONSTANT\u0000timer.INVALID_TIMER_HANDLE\u0000": "const INVALID_TIMER_HANDLE: number & { readonly __brand: \"timer.INVALID_TIMER_HANDLE\" };",
2236
+ "timer\u0000FUNCTION\u0000timer.cancel\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function cancel(handle: number): boolean;",
2237
+ "timer\u0000FUNCTION\u0000timer.delay\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false},{\"types\":[\"function(self, handle, time_elapsed)\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function delay(delay: number, repeating: boolean, callback: (self: unknown, handle: unknown, time_elapsed: unknown) => void): number;",
2238
+ "timer\u0000FUNCTION\u0000timer.get_info\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"nil\",\"table\"],\"isOptional\":false}]": "function get_info(handle: number): { time_remaining: number; delay: number; repeating: boolean } | unknown;",
2239
+ "timer\u0000FUNCTION\u0000timer.trigger\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function trigger(handle: number): boolean;",
2240
+ "types\u0000FUNCTION\u0000types.is_hash\u0000[{\"types\":[\"any\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_hash(var_: unknown): var_ is Hash;",
2241
+ "types\u0000FUNCTION\u0000types.is_matrix4\u0000[{\"types\":[\"any\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_matrix4(var_: unknown): var_ is Matrix4;",
2242
+ "types\u0000FUNCTION\u0000types.is_quat\u0000[{\"types\":[\"any\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_quat(var_: unknown): var_ is Quaternion;",
2243
+ "types\u0000FUNCTION\u0000types.is_url\u0000[{\"types\":[\"any\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_url(var_: unknown): var_ is Url;",
2244
+ "types\u0000FUNCTION\u0000types.is_vector\u0000[{\"types\":[\"any\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_vector(var_: unknown): var_ is Vector;",
2245
+ "types\u0000FUNCTION\u0000types.is_vector3\u0000[{\"types\":[\"any\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_vector3(var_: unknown): var_ is Vector3;",
2246
+ "types\u0000FUNCTION\u0000types.is_vector4\u0000[{\"types\":[\"any\"],\"isOptional\":false}]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function is_vector4(var_: unknown): var_ is Vector4;",
2247
+ "vmath\u0000FUNCTION\u0000vmath.conj\u0000[{\"types\":[\"quaternion\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function conj(q1: Quaternion): Quaternion;",
2248
+ "vmath\u0000FUNCTION\u0000vmath.cross\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function cross(v1: Vector3, v2: Vector3): Vector3;",
2249
+ "vmath\u0000FUNCTION\u0000vmath.dot\u0000[{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function dot(v1: Vector3 | Vector4, v2: Vector3 | Vector4): number;",
2250
+ "vmath\u0000FUNCTION\u0000vmath.euler_to_quat\u0000[{\"types\":[\"number\",\"vector3\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function euler_to_quat(x: number | Vector3, y: number, z: number): Quaternion;",
2251
+ "vmath\u0000FUNCTION\u0000vmath.inv\u0000[{\"types\":[\"matrix4\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function inv(m1: Matrix4): Matrix4;",
2252
+ "vmath\u0000FUNCTION\u0000vmath.length\u0000[{\"types\":[\"quaternion\",\"vector3\",\"vector4\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function length(v: Vector3 | Vector4 | Quaternion): number;",
2253
+ "vmath\u0000FUNCTION\u0000vmath.length_sqr\u0000[{\"types\":[\"quaternion\",\"vector3\",\"vector4\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function length_sqr(v: Vector3 | Vector4 | Quaternion): number;",
2254
+ "vmath\u0000FUNCTION\u0000vmath.matrix4\u0000[]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4(): Matrix4;",
2255
+ "vmath\u0000FUNCTION\u0000vmath.matrix4\u0000[{\"types\":[\"matrix4\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4(m1: Matrix4): Matrix4;",
2256
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_axis_angle\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_axis_angle(v: Vector3, angle: number): Matrix4;",
2257
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_compose\u0000[{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false},{\"types\":[\"quaternion\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_compose(translation: Vector3 | Vector4, rotation: Quaternion, scale: Vector3): Matrix4;",
2258
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_frustum\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_frustum(left: number, right: number, bottom: number, top: number, near: number, far: number): Matrix4;",
2259
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_look_at\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_look_at(eye: Vector3, look_at: Vector3, up: Vector3): Matrix4;",
2260
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_orthographic\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_orthographic(left: number, right: number, bottom: number, top: number, near: number, far: number): Matrix4;",
2261
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_perspective\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_perspective(fov: number, aspect: number, near: number, far: number): Matrix4;",
2262
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_quat\u0000[{\"types\":[\"quaternion\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_quat(q: Quaternion): Matrix4;",
2263
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_rotation_x\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_rotation_x(angle: number): Matrix4;",
2264
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_rotation_y\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_rotation_y(angle: number): Matrix4;",
2265
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_rotation_z\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_rotation_z(angle: number): Matrix4;",
2266
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_scale\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_scale(scale_x: number, scale_y: number, scale_z: number): Matrix4;",
2267
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_scale\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_scale(scale: number): Matrix4;",
2268
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_scale\u0000[{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_scale(scale: Vector3): Matrix4;",
2269
+ "vmath\u0000FUNCTION\u0000vmath.matrix4_translation\u0000[{\"types\":[\"vector3\",\"vector4\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function matrix4_translation(position: Vector3 | Vector4): Matrix4;",
2270
+ "vmath\u0000FUNCTION\u0000vmath.ortho_inv\u0000[{\"types\":[\"matrix4\"],\"isOptional\":false}]->[{\"types\":[\"matrix4\"],\"isOptional\":false}]": "function ortho_inv(m1: Matrix4): Matrix4;",
2271
+ "vmath\u0000FUNCTION\u0000vmath.project\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function project(v1: Vector3, v2: Vector3): number;",
2272
+ "vmath\u0000FUNCTION\u0000vmath.quat\u0000[]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat(): Quaternion;",
2273
+ "vmath\u0000FUNCTION\u0000vmath.quat\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat(x: number, y: number, z: number, w: number): Quaternion;",
2274
+ "vmath\u0000FUNCTION\u0000vmath.quat\u0000[{\"types\":[\"quaternion\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat(q1: Quaternion): Quaternion;",
2275
+ "vmath\u0000FUNCTION\u0000vmath.quat_axis_angle\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat_axis_angle(v: Vector3, angle: number): Quaternion;",
2276
+ "vmath\u0000FUNCTION\u0000vmath.quat_basis\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat_basis(x: Vector3, y: Vector3, z: Vector3): Quaternion;",
2277
+ "vmath\u0000FUNCTION\u0000vmath.quat_from_to\u0000[{\"types\":[\"vector3\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat_from_to(v1: Vector3, v2: Vector3): Quaternion;",
2278
+ "vmath\u0000FUNCTION\u0000vmath.quat_matrix4\u0000[{\"types\":[\"matrix4\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat_matrix4(matrix: Matrix4): Quaternion;",
2279
+ "vmath\u0000FUNCTION\u0000vmath.quat_rotation_x\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat_rotation_x(angle: number): Quaternion;",
2280
+ "vmath\u0000FUNCTION\u0000vmath.quat_rotation_y\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat_rotation_y(angle: number): Quaternion;",
2281
+ "vmath\u0000FUNCTION\u0000vmath.quat_rotation_z\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"quaternion\"],\"isOptional\":false}]": "function quat_rotation_z(angle: number): Quaternion;",
2282
+ "vmath\u0000FUNCTION\u0000vmath.quat_to_euler\u0000[{\"types\":[\"quaternion\"],\"isOptional\":false}]->[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]": "function quat_to_euler(q: Quaternion): LuaMultiReturn<[number, number, number]>;",
2283
+ "vmath\u0000FUNCTION\u0000vmath.rotate\u0000[{\"types\":[\"quaternion\"],\"isOptional\":false},{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function rotate(q: Quaternion, v1: Vector3): Vector3;",
2284
+ "vmath\u0000FUNCTION\u0000vmath.vector\u0000[{\"types\":[\"table\"],\"isOptional\":false}]->[{\"types\":[\"vector\"],\"isOptional\":false}]": "function vector(t: number[]): Vector;",
2285
+ "vmath\u0000FUNCTION\u0000vmath.vector3\u0000[]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function vector3(): Vector3;",
2286
+ "vmath\u0000FUNCTION\u0000vmath.vector3\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function vector3(x: number, y: number, z: number): Vector3;",
2287
+ "vmath\u0000FUNCTION\u0000vmath.vector3\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function vector3(n: number): Vector3;",
2288
+ "vmath\u0000FUNCTION\u0000vmath.vector3\u0000[{\"types\":[\"vector3\"],\"isOptional\":false}]->[{\"types\":[\"vector3\"],\"isOptional\":false}]": "function vector3(v1: Vector3): Vector3;",
2289
+ "vmath\u0000FUNCTION\u0000vmath.vector4\u0000[]->[{\"types\":[\"vector4\"],\"isOptional\":false}]": "function vector4(): Vector4;",
2290
+ "vmath\u0000FUNCTION\u0000vmath.vector4\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"vector4\"],\"isOptional\":false}]": "function vector4(x: number, y: number, z: number, w: number): Vector4;",
2291
+ "vmath\u0000FUNCTION\u0000vmath.vector4\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[{\"types\":[\"vector4\"],\"isOptional\":false}]": "function vector4(n: number): Vector4;",
2292
+ "vmath\u0000FUNCTION\u0000vmath.vector4\u0000[{\"types\":[\"vector4\"],\"isOptional\":false}]->[{\"types\":[\"vector4\"],\"isOptional\":false}]": "function vector4(v1: Vector4): Vector4;",
2293
+ "webview\u0000FUNCTION\u0000webview.create\u0000[{\"types\":[\"function\"],\"isOptional\":false}]->[]": "function create(callback: (...args: unknown[]) => unknown): void;",
2294
+ "webview\u0000FUNCTION\u0000webview.destroy\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function destroy(webview_id: number): void;",
2295
+ "webview\u0000FUNCTION\u0000webview.eval\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function eval(webview_id: number, code: string): void;",
2296
+ "webview\u0000FUNCTION\u0000webview.is_visible\u0000[{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function is_visible(webview_id: number): void;",
2297
+ "webview\u0000FUNCTION\u0000webview.open_raw\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"string\"],\"isOptional\":false},{\"types\":[\"table\"],\"isOptional\":false}]->[]": "function open_raw(webview_id: number, html: string, options: Record<string | number, unknown>): void;",
2298
+ "webview\u0000FUNCTION\u0000webview.set_position\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_position(webview_id: number, x: number, y: number, width: number, height: number): void;",
2299
+ "webview\u0000FUNCTION\u0000webview.set_transparent\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_transparent(webview_id: number, transparent: boolean): void;",
2300
+ "webview\u0000FUNCTION\u0000webview.set_visible\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_visible(webview_id: number, visible: number): void;",
2301
+ "window\u0000CONSTANT\u0000window.DIMMING_OFF\u0000": "const DIMMING_OFF: number & { readonly __brand: \"window.DIMMING_OFF\" };",
2302
+ "window\u0000CONSTANT\u0000window.DIMMING_ON\u0000": "const DIMMING_ON: number & { readonly __brand: \"window.DIMMING_ON\" };",
2303
+ "window\u0000CONSTANT\u0000window.DIMMING_UNKNOWN\u0000": "const DIMMING_UNKNOWN: number & { readonly __brand: \"window.DIMMING_UNKNOWN\" };",
2304
+ "window\u0000CONSTANT\u0000window.WINDOW_EVENT_DEICONIFIED\u0000": "const WINDOW_EVENT_DEICONIFIED: number & { readonly __brand: \"window.WINDOW_EVENT_DEICONIFIED\" };",
2305
+ "window\u0000CONSTANT\u0000window.WINDOW_EVENT_FOCUS_GAINED\u0000": "const WINDOW_EVENT_FOCUS_GAINED: number & { readonly __brand: \"window.WINDOW_EVENT_FOCUS_GAINED\" };",
2306
+ "window\u0000CONSTANT\u0000window.WINDOW_EVENT_FOCUS_LOST\u0000": "const WINDOW_EVENT_FOCUS_LOST: number & { readonly __brand: \"window.WINDOW_EVENT_FOCUS_LOST\" };",
2307
+ "window\u0000CONSTANT\u0000window.WINDOW_EVENT_ICONFIED\u0000": "const WINDOW_EVENT_ICONFIED: number & { readonly __brand: \"window.WINDOW_EVENT_ICONFIED\" };",
2308
+ "window\u0000CONSTANT\u0000window.WINDOW_EVENT_RESIZED\u0000": "const WINDOW_EVENT_RESIZED: number & { readonly __brand: \"window.WINDOW_EVENT_RESIZED\" };",
2309
+ "window\u0000FUNCTION\u0000window.get_dim_mode\u0000[]->[{\"types\":[\"constant\"],\"isOptional\":false}]": "function get_dim_mode(): Opaque<\"constant\">;",
2310
+ "window\u0000FUNCTION\u0000window.get_display_scale\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false}]": "function get_display_scale(): number;",
2311
+ "window\u0000FUNCTION\u0000window.get_mouse_lock\u0000[]->[{\"types\":[\"boolean\"],\"isOptional\":false}]": "function get_mouse_lock(): boolean;",
2312
+ "window\u0000FUNCTION\u0000window.get_safe_area\u0000[]->[{\"types\":[\"table\"],\"isOptional\":false}]": "function get_safe_area(): { safe_area: { x: number; y: number; width: number; height: number; inset_left: number; inset_top: number; inset_right: number; inset_bottom: number } };",
2313
+ "window\u0000FUNCTION\u0000window.get_size\u0000[]->[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]": "function get_size(): LuaMultiReturn<[number, number]>;",
2314
+ "window\u0000FUNCTION\u0000window.set_dim_mode\u0000[{\"types\":[\"constant\"],\"isOptional\":false}]->[]": "function set_dim_mode(mode: Opaque<\"constant\">): void;",
2315
+ "window\u0000FUNCTION\u0000window.set_listener\u0000[{\"types\":[\"function(self, event, data)\",\"nil\"],\"isOptional\":false}]->[]": "function set_listener(callback?: (self: unknown, event: typeof WINDOW_EVENT_FOCUS_LOST | typeof WINDOW_EVENT_FOCUS_GAINED | typeof WINDOW_EVENT_RESIZED | typeof WINDOW_EVENT_ICONFIED | typeof WINDOW_EVENT_DEICONIFIED, data: Record<string | number, unknown>) => void): void;",
2316
+ "window\u0000FUNCTION\u0000window.set_mouse_lock\u0000[{\"types\":[\"boolean\"],\"isOptional\":false}]->[]": "function set_mouse_lock(flag: boolean): void;",
2317
+ "window\u0000FUNCTION\u0000window.set_position\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_position(x: number, y: number): void;",
2318
+ "window\u0000FUNCTION\u0000window.set_size\u0000[{\"types\":[\"number\"],\"isOptional\":false},{\"types\":[\"number\"],\"isOptional\":false}]->[]": "function set_size(width: number, height: number): void;",
2319
+ "window\u0000FUNCTION\u0000window.set_title\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[]": "function set_title(title: string): void;",
2320
+ "zlib\u0000FUNCTION\u0000zlib.deflate\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function deflate(buf: string): string;",
2321
+ "zlib\u0000FUNCTION\u0000zlib.inflate\u0000[{\"types\":[\"string\"],\"isOptional\":false}]->[{\"types\":[\"string\"],\"isOptional\":false}]": "function inflate(buf: string): string;"
2322
+ }
2323
+ }
2324
+ }