dualsense-ts 2.0.0 → 2.0.3

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 (46) hide show
  1. package/dist/dualsense.js +21 -21
  2. package/dist/dualsense.js.map +1 -1
  3. package/dist/hid/dualsense_hid.js +82 -82
  4. package/dist/hid/dualsense_hid.js.map +1 -1
  5. package/dist/input.d.ts +2 -1
  6. package/dist/input.d.ts.map +1 -1
  7. package/dist/input.js +5 -5
  8. package/dist/input.js.map +1 -1
  9. package/docs/.nojekyll +1 -0
  10. package/docs/Accelerometer.md +13 -0
  11. package/docs/Analog.md +1712 -0
  12. package/docs/AnalogParams.md +105 -0
  13. package/docs/Axis.md +1577 -0
  14. package/docs/Brightness.md +39 -0
  15. package/docs/CommandScopeA.md +83 -0
  16. package/docs/CommandScopeB.md +72 -0
  17. package/docs/Dpad.md +1591 -0
  18. package/docs/DpadParams.md +116 -0
  19. package/docs/DualSenseCommand.md +1448 -0
  20. package/docs/Dualsense.md +1690 -0
  21. package/docs/DualsenseHID.md +1158 -0
  22. package/docs/DualsenseHIDState.md +457 -0
  23. package/docs/DualsenseParams.md +215 -0
  24. package/docs/Exports.md +214 -0
  25. package/docs/Gyroscope.md +13 -0
  26. package/docs/Haptic.md +27 -0
  27. package/docs/Home.md +105 -0
  28. package/docs/Indicator.md +52 -0
  29. package/docs/Input.md +1382 -0
  30. package/docs/InputId.md +457 -0
  31. package/docs/InputParams.md +62 -0
  32. package/docs/LedOptions.md +50 -0
  33. package/docs/Momentary.md +1549 -0
  34. package/docs/Motion.md +38 -0
  35. package/docs/Mute.md +1558 -0
  36. package/docs/PlayerID.md +61 -0
  37. package/docs/PulseOptions.md +39 -0
  38. package/docs/Touchpad.md +1613 -0
  39. package/docs/Trigger.md +1620 -0
  40. package/docs/TriggerMode.md +116 -0
  41. package/docs/Unisense.md +1591 -0
  42. package/docs/UnisenseParams.md +105 -0
  43. package/docs/_Sidebar.md +4 -0
  44. package/package.json +7 -2
  45. package/src/input.ts +6 -6
  46. package/tsconfig.json +10 -1
@@ -0,0 +1,116 @@
1
+ # Interface: DpadParams
2
+
3
+ ## Hierarchy
4
+
5
+ - [`InputParams`](../wiki/InputParams)
6
+
7
+ ↳ **`DpadParams`**
8
+
9
+ ## Table of contents
10
+
11
+ ### Properties
12
+
13
+ - [down](../wiki/DpadParams#down)
14
+ - [icon](../wiki/DpadParams#icon)
15
+ - [left](../wiki/DpadParams#left)
16
+ - [name](../wiki/DpadParams#name)
17
+ - [parent](../wiki/DpadParams#parent)
18
+ - [right](../wiki/DpadParams#right)
19
+ - [threshold](../wiki/DpadParams#threshold)
20
+ - [up](../wiki/DpadParams#up)
21
+
22
+ ## Properties
23
+
24
+ ### down
25
+
26
+ • `Optional` **down**: [`InputParams`](../wiki/InputParams)
27
+
28
+ #### Defined in
29
+
30
+ [src/elements/dpad.ts:6](https://github.com/nsfm/dualsense-ts/blob/6dc1604/src/elements/dpad.ts#L6)
31
+
32
+ ___
33
+
34
+ ### icon
35
+
36
+ • `Optional` **icon**: `string`
37
+
38
+ #### Inherited from
39
+
40
+ [InputParams](../wiki/InputParams).[icon](../wiki/InputParams#icon)
41
+
42
+ #### Defined in
43
+
44
+ [src/input.ts:6](https://github.com/nsfm/dualsense-ts/blob/6dc1604/src/input.ts#L6)
45
+
46
+ ___
47
+
48
+ ### left
49
+
50
+ • `Optional` **left**: [`InputParams`](../wiki/InputParams)
51
+
52
+ #### Defined in
53
+
54
+ [src/elements/dpad.ts:7](https://github.com/nsfm/dualsense-ts/blob/6dc1604/src/elements/dpad.ts#L7)
55
+
56
+ ___
57
+
58
+ ### name
59
+
60
+ • `Optional` **name**: `string`
61
+
62
+ #### Inherited from
63
+
64
+ [InputParams](../wiki/InputParams).[name](../wiki/InputParams#name)
65
+
66
+ #### Defined in
67
+
68
+ [src/input.ts:5](https://github.com/nsfm/dualsense-ts/blob/6dc1604/src/input.ts#L5)
69
+
70
+ ___
71
+
72
+ ### parent
73
+
74
+ • `Optional` **parent**: [`Input`](../wiki/Input)<`unknown`\>
75
+
76
+ #### Inherited from
77
+
78
+ [InputParams](../wiki/InputParams).[parent](../wiki/InputParams#parent)
79
+
80
+ #### Defined in
81
+
82
+ [src/input.ts:8](https://github.com/nsfm/dualsense-ts/blob/6dc1604/src/input.ts#L8)
83
+
84
+ ___
85
+
86
+ ### right
87
+
88
+ • `Optional` **right**: [`InputParams`](../wiki/InputParams)
89
+
90
+ #### Defined in
91
+
92
+ [src/elements/dpad.ts:8](https://github.com/nsfm/dualsense-ts/blob/6dc1604/src/elements/dpad.ts#L8)
93
+
94
+ ___
95
+
96
+ ### threshold
97
+
98
+ • `Optional` **threshold**: `number`
99
+
100
+ #### Inherited from
101
+
102
+ [InputParams](../wiki/InputParams).[threshold](../wiki/InputParams#threshold)
103
+
104
+ #### Defined in
105
+
106
+ [src/input.ts:7](https://github.com/nsfm/dualsense-ts/blob/6dc1604/src/input.ts#L7)
107
+
108
+ ___
109
+
110
+ ### up
111
+
112
+ • `Optional` **up**: [`InputParams`](../wiki/InputParams)
113
+
114
+ #### Defined in
115
+
116
+ [src/elements/dpad.ts:5](https://github.com/nsfm/dualsense-ts/blob/6dc1604/src/elements/dpad.ts#L5)