usb 2.0.0-alpha.2 → 2.1.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 (258) hide show
  1. package/.gitmodules +1 -1
  2. package/CHANGELOG.md +100 -0
  3. package/README.md +573 -0
  4. package/binding.gyp +12 -2
  5. package/dist/index.d.ts +4 -4
  6. package/dist/index.js +14 -8
  7. package/dist/index.js.map +1 -1
  8. package/dist/usb/bindings.d.ts +13 -0
  9. package/dist/usb/bindings.js +2 -1
  10. package/dist/usb/bindings.js.map +1 -1
  11. package/dist/usb/index.js +86 -2
  12. package/dist/usb/index.js.map +1 -1
  13. package/dist/usb/interface.js.map +1 -1
  14. package/dist/webusb/index.d.ts +32 -19
  15. package/dist/webusb/index.js +163 -67
  16. package/dist/webusb/index.js.map +1 -1
  17. package/dist/webusb/webusb-device.d.ts +1 -1
  18. package/dist/webusb/webusb-device.js +27 -15
  19. package/dist/webusb/webusb-device.js.map +1 -1
  20. package/libusb/.private/pre-commit.sh +7 -1
  21. package/libusb/.travis.yml +49 -0
  22. package/libusb/AUTHORS +44 -3
  23. package/libusb/Brewfile +4 -0
  24. package/libusb/ChangeLog +74 -2
  25. package/libusb/README.md +32 -0
  26. package/libusb/TODO +1 -1
  27. package/libusb/Xcode/common.xcconfig +12 -0
  28. package/libusb/Xcode/config.h +25 -0
  29. package/libusb/Xcode/libusb.xcodeproj/project.pbxproj +959 -1
  30. package/libusb/android/README +4 -2
  31. package/libusb/android/config.h +75 -0
  32. package/libusb/appveyor.yml +41 -0
  33. package/libusb/appveyor_cygwin.bat +11 -0
  34. package/libusb/appveyor_minGW.bat +19 -0
  35. package/libusb/autogen.sh +1 -1
  36. package/libusb/bootstrap.sh +3 -16
  37. package/libusb/configure.ac +108 -80
  38. package/libusb/doc/doxygen.cfg.in +1785 -739
  39. package/libusb/examples/Makefile.am +1 -1
  40. package/libusb/examples/dpfp.c +3 -1
  41. package/libusb/examples/dpfp_threaded.c +23 -10
  42. package/libusb/examples/ezusb.c +3 -3
  43. package/libusb/examples/ezusb.h +2 -2
  44. package/libusb/examples/fxload.c +31 -9
  45. package/libusb/examples/hotplugtest.c +35 -7
  46. package/libusb/examples/listdevs.c +3 -1
  47. package/libusb/examples/sam3u_benchmark.c +3 -3
  48. package/libusb/examples/testlibusb.c +277 -0
  49. package/libusb/examples/xusb.c +40 -34
  50. package/libusb/libusb/Makefile.am +49 -23
  51. package/libusb/libusb/core.c +855 -457
  52. package/libusb/libusb/descriptor.c +72 -78
  53. package/libusb/libusb/hotplug.c +122 -76
  54. package/libusb/libusb/hotplug.h +42 -25
  55. package/libusb/libusb/io.c +625 -390
  56. package/libusb/libusb/libusb-1.0.def +12 -0
  57. package/libusb/libusb/libusb.h +218 -150
  58. package/libusb/libusb/libusbi.h +346 -176
  59. package/libusb/libusb/os/darwin_usb.c +604 -319
  60. package/libusb/libusb/os/darwin_usb.h +61 -20
  61. package/libusb/libusb/os/haiku_pollfs.cpp +367 -0
  62. package/libusb/libusb/os/haiku_usb.h +113 -0
  63. package/libusb/libusb/os/haiku_usb_backend.cpp +533 -0
  64. package/libusb/libusb/os/haiku_usb_raw.cpp +267 -0
  65. package/libusb/libusb/os/haiku_usb_raw.h +188 -0
  66. package/libusb/libusb/os/linux_netlink.c +186 -146
  67. package/libusb/libusb/os/linux_udev.c +36 -14
  68. package/libusb/libusb/os/linux_usbfs.c +426 -225
  69. package/libusb/libusb/os/linux_usbfs.h +5 -3
  70. package/libusb/libusb/os/netbsd_usb.c +21 -77
  71. package/libusb/libusb/os/openbsd_usb.c +32 -115
  72. package/libusb/libusb/os/poll_posix.c +38 -5
  73. package/libusb/libusb/os/poll_posix.h +3 -0
  74. package/libusb/libusb/os/poll_windows.c +277 -626
  75. package/libusb/libusb/os/poll_windows.h +11 -44
  76. package/libusb/libusb/os/sunos_usb.c +1695 -0
  77. package/libusb/libusb/os/sunos_usb.h +80 -0
  78. package/libusb/libusb/os/threads_posix.c +24 -26
  79. package/libusb/libusb/os/threads_posix.h +73 -21
  80. package/libusb/libusb/os/threads_windows.c +71 -157
  81. package/libusb/libusb/os/threads_windows.h +68 -44
  82. package/libusb/libusb/os/wince_usb.c +276 -420
  83. package/libusb/libusb/os/wince_usb.h +23 -28
  84. package/libusb/libusb/os/windows_common.h +78 -58
  85. package/libusb/libusb/os/windows_nt_common.c +1010 -0
  86. package/libusb/libusb/os/windows_nt_common.h +110 -0
  87. package/libusb/libusb/os/windows_nt_shared_types.h +147 -0
  88. package/libusb/libusb/os/windows_usbdk.c +830 -0
  89. package/libusb/libusb/os/windows_usbdk.h +103 -0
  90. package/libusb/libusb/os/windows_winusb.c +4391 -0
  91. package/libusb/libusb/os/windows_winusb.h +783 -0
  92. package/libusb/libusb/strerror.c +41 -7
  93. package/libusb/libusb/sync.c +41 -13
  94. package/libusb/libusb/version.h +1 -1
  95. package/libusb/libusb/version_nano.h +1 -1
  96. package/libusb/libusb-1.0.pc.in +1 -1
  97. package/libusb/msvc/appveyor.bat +27 -0
  98. package/libusb/msvc/config.h +5 -4
  99. package/libusb/msvc/ddk_build.cmd +87 -43
  100. package/libusb/msvc/fxload_2010.vcxproj +24 -104
  101. package/libusb/msvc/fxload_2012.vcxproj +24 -107
  102. package/libusb/msvc/fxload_2013.vcxproj +24 -107
  103. package/libusb/msvc/fxload_2015.vcxproj +91 -0
  104. package/libusb/msvc/fxload_2017.vcxproj +114 -0
  105. package/libusb/msvc/fxload_sources +1 -1
  106. package/libusb/msvc/getopt_2010.vcxproj +16 -75
  107. package/libusb/msvc/getopt_2012.vcxproj +16 -79
  108. package/libusb/msvc/getopt_2013.vcxproj +16 -79
  109. package/libusb/msvc/getopt_2015.vcxproj +73 -0
  110. package/libusb/msvc/getopt_2017.vcxproj +98 -0
  111. package/libusb/msvc/getopt_sources +6 -2
  112. package/libusb/msvc/hotplugtest_2010.vcxproj +18 -99
  113. package/libusb/msvc/hotplugtest_2012.vcxproj +18 -102
  114. package/libusb/msvc/hotplugtest_2013.vcxproj +18 -102
  115. package/libusb/msvc/hotplugtest_2015.vcxproj +83 -0
  116. package/libusb/msvc/hotplugtest_2017.vcxproj +106 -0
  117. package/libusb/msvc/hotplugtest_sources +1 -1
  118. package/libusb/msvc/libusb_2005.sln +20 -20
  119. package/libusb/msvc/libusb_2010.sln +57 -46
  120. package/libusb/msvc/libusb_2012.sln +57 -46
  121. package/libusb/msvc/libusb_2013.sln +57 -50
  122. package/libusb/msvc/libusb_2015.sln +59 -52
  123. package/libusb/msvc/libusb_2017.sln +186 -0
  124. package/libusb/msvc/libusb_dll.dsp +2 -2
  125. package/libusb/msvc/libusb_dll_2005.vcproj +30 -2
  126. package/libusb/msvc/libusb_dll_2010.vcxproj +26 -90
  127. package/libusb/msvc/libusb_dll_2012.vcxproj +28 -96
  128. package/libusb/msvc/libusb_dll_2013.vcxproj +28 -96
  129. package/libusb/msvc/libusb_dll_2015.vcxproj +107 -0
  130. package/libusb/msvc/libusb_dll_2017.vcxproj +134 -0
  131. package/libusb/msvc/libusb_dll_wince.vcproj +9 -1
  132. package/libusb/msvc/libusb_sources +10 -5
  133. package/libusb/msvc/libusb_static.dsp +2 -2
  134. package/libusb/msvc/libusb_static_2005.vcproj +32 -4
  135. package/libusb/msvc/libusb_static_2010.vcxproj +24 -83
  136. package/libusb/msvc/libusb_static_2012.vcxproj +25 -87
  137. package/libusb/msvc/libusb_static_2013.vcxproj +25 -87
  138. package/libusb/msvc/libusb_static_2015.vcxproj +98 -0
  139. package/libusb/msvc/libusb_static_2017.vcxproj +117 -0
  140. package/libusb/msvc/libusb_static_wince.vcproj +20 -26
  141. package/libusb/msvc/libusb_wince.sln +88 -88
  142. package/libusb/msvc/listdevs_2010.vcxproj +16 -99
  143. package/libusb/msvc/listdevs_2012.vcxproj +16 -102
  144. package/libusb/msvc/listdevs_2013.vcxproj +16 -102
  145. package/libusb/msvc/listdevs_2015.vcxproj +83 -0
  146. package/libusb/msvc/listdevs_2017.vcxproj +106 -0
  147. package/libusb/msvc/listdevs_sources +2 -1
  148. package/libusb/msvc/stress_2010.vcxproj +20 -101
  149. package/libusb/msvc/stress_2012.vcxproj +20 -104
  150. package/libusb/msvc/stress_2013.vcxproj +20 -104
  151. package/libusb/msvc/stress_2015.vcxproj +87 -0
  152. package/libusb/msvc/stress_2017.vcxproj +110 -0
  153. package/libusb/msvc/stress_sources +21 -0
  154. package/libusb/msvc/testlibusb_2010.vcxproj +82 -0
  155. package/libusb/msvc/testlibusb_2012.vcxproj +83 -0
  156. package/libusb/msvc/testlibusb_2013.vcxproj +83 -0
  157. package/libusb/msvc/testlibusb_2015.vcxproj +83 -0
  158. package/libusb/msvc/testlibusb_2017.vcxproj +106 -0
  159. package/libusb/msvc/testlibusb_sources +20 -0
  160. package/libusb/msvc/xusb_2010.vcxproj +17 -98
  161. package/libusb/msvc/xusb_2012.vcxproj +17 -101
  162. package/libusb/msvc/xusb_2013.vcxproj +17 -101
  163. package/libusb/msvc/xusb_2015.vcxproj +83 -0
  164. package/libusb/msvc/xusb_2017.vcxproj +106 -0
  165. package/libusb/msvc/xusb_sources +1 -1
  166. package/libusb/tests/stress.c +2 -2
  167. package/libusb/tests/testlib.c +0 -4
  168. package/libusb/travis-autogen.sh +39 -0
  169. package/libusb.gypi +21 -2
  170. package/package.json +18 -13
  171. package/prebuilds/android-arm/node.napi.node +0 -0
  172. package/prebuilds/android-arm64/node.napi.node +0 -0
  173. package/prebuilds/darwin-x64+arm64/node.napi.node +0 -0
  174. package/prebuilds/linux-arm/node.napi.node +0 -0
  175. package/prebuilds/linux-arm64/node.napi.node +0 -0
  176. package/prebuilds/linux-ia32/node.napi.node +0 -0
  177. package/prebuilds/linux-x64/node.napi.node +0 -0
  178. package/prebuilds/win32-ia32/node.napi.node +0 -0
  179. package/prebuilds/win32-x64/node.napi.node +0 -0
  180. package/src/device.cc +7 -7
  181. package/src/node_usb.cc +43 -1
  182. package/src/node_usb.h +1 -0
  183. package/src/uv_async_queue.h +33 -25
  184. package/test/usb.coffee +6 -0
  185. package/tsc/index.ts +13 -7
  186. package/tsc/usb/bindings.ts +19 -1
  187. package/tsc/usb/index.ts +67 -19
  188. package/tsc/usb/interface.ts +2 -2
  189. package/tsc/webusb/index.ts +197 -74
  190. package/tsc/webusb/webusb-device.ts +30 -17
  191. package/.github/workflows/prebuild.yml +0 -48
  192. package/Readme.md +0 -339
  193. package/dist/webusb/typed-event-target.d.ts +0 -11
  194. package/dist/webusb/typed-event-target.js +0 -21
  195. package/dist/webusb/typed-event-target.js.map +0 -1
  196. package/docs/assets/css/main.css +0 -2660
  197. package/docs/assets/images/icons.png +0 -0
  198. package/docs/assets/images/icons@2x.png +0 -0
  199. package/docs/assets/images/widgets.png +0 -0
  200. package/docs/assets/images/widgets@2x.png +0 -0
  201. package/docs/assets/js/main.js +0 -248
  202. package/docs/assets/js/search.js +0 -1
  203. package/docs/classes/usb_bindings.device.html +0 -1338
  204. package/docs/classes/usb_bindings.libusbexception.html +0 -234
  205. package/docs/classes/usb_bindings.transfer.html +0 -344
  206. package/docs/classes/usb_capability.capability.html +0 -297
  207. package/docs/classes/usb_device.extendeddevice.html +0 -766
  208. package/docs/classes/usb_endpoint.endpoint.html +0 -472
  209. package/docs/classes/usb_endpoint.inendpoint.html +0 -766
  210. package/docs/classes/usb_endpoint.outendpoint.html +0 -582
  211. package/docs/classes/usb_interface.interface.html +0 -648
  212. package/docs/classes/webusb.webusb-1.html +0 -615
  213. package/docs/classes/webusb_mutex.mutex.html +0 -270
  214. package/docs/classes/webusb_typed_event_target.typedeventtarget.html +0 -443
  215. package/docs/classes/webusb_webusb_device.webusbdevice.html +0 -904
  216. package/docs/index.html +0 -500
  217. package/docs/interfaces/usb.deviceevents.html +0 -242
  218. package/docs/interfaces/usb_descriptors.bosdescriptor.html +0 -293
  219. package/docs/interfaces/usb_descriptors.capabilitydescriptor.html +0 -274
  220. package/docs/interfaces/usb_descriptors.configdescriptor.html +0 -388
  221. package/docs/interfaces/usb_descriptors.devicedescriptor.html +0 -464
  222. package/docs/interfaces/usb_descriptors.endpointdescriptor.html +0 -370
  223. package/docs/interfaces/usb_descriptors.interfacedescriptor.html +0 -407
  224. package/docs/interfaces/webusb.usboptions.html +0 -226
  225. package/docs/modules/index.html +0 -304
  226. package/docs/modules/usb.html +0 -173
  227. package/docs/modules/usb_bindings.html +0 -2248
  228. package/docs/modules/usb_capability.html +0 -156
  229. package/docs/modules/usb_descriptors.html +0 -176
  230. package/docs/modules/usb_device.html +0 -156
  231. package/docs/modules/usb_endpoint.html +0 -164
  232. package/docs/modules/usb_interface.html +0 -156
  233. package/docs/modules/webusb.html +0 -165
  234. package/docs/modules/webusb_mutex.html +0 -156
  235. package/docs/modules/webusb_typed_event_target.html +0 -156
  236. package/docs/modules/webusb_webusb_device.html +0 -156
  237. package/docs/modules.html +0 -156
  238. package/libusb/INSTALL +0 -234
  239. package/libusb/README +0 -28
  240. package/libusb/libusb/os/windows_usb.c +0 -5347
  241. package/libusb/libusb/os/windows_usb.h +0 -971
  242. package/libusb/msvc/fxload_2010.vcxproj.filters +0 -25
  243. package/libusb/msvc/fxload_2012.vcxproj.filters +0 -25
  244. package/libusb/msvc/getopt_2010.vcxproj.filters +0 -26
  245. package/libusb/msvc/getopt_2012.vcxproj.filters +0 -26
  246. package/libusb/msvc/hotplugtest_2010.vcxproj.filters +0 -14
  247. package/libusb/msvc/hotplugtest_2012.vcxproj.filters +0 -14
  248. package/libusb/msvc/libusb_dll_2010.vcxproj.filters +0 -81
  249. package/libusb/msvc/libusb_dll_2012.vcxproj.filters +0 -84
  250. package/libusb/msvc/libusb_static_2010.vcxproj.filters +0 -74
  251. package/libusb/msvc/libusb_static_2012.vcxproj.filters +0 -74
  252. package/libusb/msvc/listdevs_2010.vcxproj.filters +0 -14
  253. package/libusb/msvc/listdevs_2012.vcxproj.filters +0 -14
  254. package/libusb/msvc/stress_2010.vcxproj.filters +0 -25
  255. package/libusb/msvc/stress_2012.vcxproj.filters +0 -25
  256. package/libusb/msvc/xusb_2010.vcxproj.filters +0 -14
  257. package/libusb/msvc/xusb_2012.vcxproj.filters +0 -14
  258. package/tsc/webusb/typed-event-target.ts +0 -23
@@ -1,2248 +0,0 @@
1
- <!doctype html>
2
- <html class="default no-js">
3
- <head>
4
- <meta charset="utf-8">
5
- <meta http-equiv="X-UA-Compatible" content="IE=edge">
6
- <title>usb/bindings | Node USB</title>
7
- <meta name="description" content="Documentation for Node USB">
8
- <meta name="viewport" content="width=device-width, initial-scale=1">
9
- <link rel="stylesheet" href="../assets/css/main.css">
10
- <script async src="../assets/js/search.js" id="search-script"></script>
11
- </head>
12
- <body>
13
- <header>
14
- <div class="tsd-page-toolbar">
15
- <div class="container">
16
- <div class="table-wrap">
17
- <div class="table-cell" id="tsd-search" data-index="../assets/js/search.json" data-base="..">
18
- <div class="field">
19
- <label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
20
- <input id="tsd-search-field" type="text" />
21
- </div>
22
- <ul class="results">
23
- <li class="state loading">Preparing search index...</li>
24
- <li class="state failure">The search index is not available</li>
25
- </ul>
26
- <a href="../index.html" class="title">Node USB</a>
27
- </div>
28
- <div class="table-cell" id="tsd-widgets">
29
- <div id="tsd-filter">
30
- <a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
31
- <div class="tsd-filter-group">
32
- <div class="tsd-select" id="tsd-filter-visibility">
33
- <span class="tsd-select-label">All</span>
34
- <ul class="tsd-select-list">
35
- <li data-value="public">Public</li>
36
- <li data-value="protected">Public/Protected</li>
37
- <li data-value="private" class="selected">All</li>
38
- </ul>
39
- </div>
40
- <input type="checkbox" id="tsd-filter-inherited" checked />
41
- <label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
42
- </div>
43
- </div>
44
- <a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
45
- </div>
46
- </div>
47
- </div>
48
- </div>
49
- <div class="tsd-page-title">
50
- <div class="container">
51
- <ul class="tsd-breadcrumb">
52
- <li>
53
- <a href="../modules.html">Node USB</a>
54
- </li>
55
- <li>
56
- <a href="usb_bindings.html">usb/bindings</a>
57
- </li>
58
- </ul>
59
- <h1>Module usb/bindings</h1>
60
- </div>
61
- </div>
62
- </header>
63
- <div class="container container-main">
64
- <div class="row">
65
- <div class="col-8 col-content">
66
- <section class="tsd-panel-group tsd-index-group">
67
- <h2>Index</h2>
68
- <section class="tsd-panel tsd-index-panel">
69
- <div class="tsd-index-content">
70
- <section class="tsd-index-section ">
71
- <h3>References</h3>
72
- <ul class="tsd-index-list">
73
- <li class="tsd-kind-reference tsd-parent-kind-module"><a href="usb_bindings.html#deviceevents" class="tsd-kind-icon">Device<wbr>Events</a></li>
74
- </ul>
75
- </section>
76
- <section class="tsd-index-section ">
77
- <h3>Classes</h3>
78
- <ul class="tsd-index-list">
79
- <li class="tsd-kind-class tsd-parent-kind-module"><a href="../classes/usb_bindings.device.html" class="tsd-kind-icon">Device</a></li>
80
- <li class="tsd-kind-class tsd-parent-kind-module"><a href="../classes/usb_bindings.libusbexception.html" class="tsd-kind-icon">LibUSBException</a></li>
81
- <li class="tsd-kind-class tsd-parent-kind-module"><a href="../classes/usb_bindings.transfer.html" class="tsd-kind-icon">Transfer</a></li>
82
- </ul>
83
- </section>
84
- <section class="tsd-index-section ">
85
- <h3>Variables</h3>
86
- <ul class="tsd-index-list">
87
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#init_error" class="tsd-kind-icon">INIT_<wbr>ERROR</a></li>
88
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_class_application" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>APPLICATION</a></li>
89
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_class_audio" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>AUDIO</a></li>
90
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_class_comm" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>COMM</a></li>
91
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_class_data" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>DATA</a></li>
92
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_class_hid" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>HID</a></li>
93
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_class_hub" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>HUB</a></li>
94
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_class_mass_storage" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>MASS_<wbr>STORAGE</a></li>
95
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_class_per_interface" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>PER_<wbr>INTERFACE</a></li>
96
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_class_printer" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>PRINTER</a></li>
97
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_class_ptp" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>PTP</a></li>
98
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_class_vendor_spec" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>VENDOR_<wbr>SPEC</a></li>
99
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_class_wireless" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>WIRELESS</a></li>
100
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_control_setup_size" class="tsd-kind-icon">LIBUSB_<wbr>CONTROL_<wbr>SETUP_<wbr>SIZE</a></li>
101
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_dt_bos" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>BOS</a></li>
102
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_dt_bos_size" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>BOS_<wbr>SIZE</a></li>
103
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_dt_config" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>CONFIG</a></li>
104
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_dt_device" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>DEVICE</a></li>
105
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_dt_endpoint" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>ENDPOINT</a></li>
106
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_dt_hid" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>HID</a></li>
107
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_dt_hub" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>HUB</a></li>
108
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_dt_interface" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>INTERFACE</a></li>
109
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_dt_physical" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>PHYSICAL</a></li>
110
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_dt_report" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>REPORT</a></li>
111
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_dt_string" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>STRING</a></li>
112
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_endpoint_in" class="tsd-kind-icon">LIBUSB_<wbr>ENDPOINT_<wbr>IN</a></li>
113
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_endpoint_out" class="tsd-kind-icon">LIBUSB_<wbr>ENDPOINT_<wbr>OUT</a></li>
114
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_error_access" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>ACCESS</a></li>
115
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_error_busy" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>BUSY</a></li>
116
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_error_interrupted" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>INTERRUPTED</a></li>
117
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_error_invalid_param" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>INVALID_<wbr>PARAM</a></li>
118
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_error_io" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>IO</a></li>
119
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_error_not_found" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>NOT_<wbr>FOUND</a></li>
120
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_error_not_supported" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>NOT_<wbr>SUPPORTED</a></li>
121
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_error_no_device" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>NO_<wbr>DEVICE</a></li>
122
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_error_no_mem" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>NO_<wbr>MEM</a></li>
123
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_error_other" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>OTHER</a></li>
124
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_error_overflow" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>OVERFLOW</a></li>
125
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_error_pipe" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>PIPE</a></li>
126
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_error_timeout" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>TIMEOUT</a></li>
127
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_iso_sync_type_adaptive" class="tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>SYNC_<wbr>TYPE_<wbr>ADAPTIVE</a></li>
128
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_iso_sync_type_async" class="tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>SYNC_<wbr>TYPE_<wbr>ASYNC</a></li>
129
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_iso_sync_type_none" class="tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>SYNC_<wbr>TYPE_<wbr>NONE</a></li>
130
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_iso_sync_type_sync" class="tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>SYNC_<wbr>TYPE_<wbr>SYNC</a></li>
131
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_iso_usage_type_data" class="tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>USAGE_<wbr>TYPE_<wbr>DATA</a></li>
132
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_iso_usage_type_feedback" class="tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>USAGE_<wbr>TYPE_<wbr>FEEDBACK</a></li>
133
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_iso_usage_type_implicit" class="tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>USAGE_<wbr>TYPE_<wbr>IMPLICIT</a></li>
134
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_recipient_device" class="tsd-kind-icon">LIBUSB_<wbr>RECIPIENT_<wbr>DEVICE</a></li>
135
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_recipient_endpoint" class="tsd-kind-icon">LIBUSB_<wbr>RECIPIENT_<wbr>ENDPOINT</a></li>
136
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_recipient_interface" class="tsd-kind-icon">LIBUSB_<wbr>RECIPIENT_<wbr>INTERFACE</a></li>
137
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_recipient_other" class="tsd-kind-icon">LIBUSB_<wbr>RECIPIENT_<wbr>OTHER</a></li>
138
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_request_clear_feature" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>CLEAR_<wbr>FEATURE</a></li>
139
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_request_get_configuration" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>GET_<wbr>CONFIGURATION</a></li>
140
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_request_get_descriptor" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>GET_<wbr>DESCRIPTOR</a></li>
141
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_request_get_interface" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>GET_<wbr>INTERFACE</a></li>
142
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_request_get_status" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>GET_<wbr>STATUS</a></li>
143
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_request_set_address" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>ADDRESS</a></li>
144
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_request_set_configuration" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>CONFIGURATION</a></li>
145
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_request_set_descriptor" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>DESCRIPTOR</a></li>
146
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_request_set_feature" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>FEATURE</a></li>
147
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_request_set_interface" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>INTERFACE</a></li>
148
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_request_synch_frame" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SYNCH_<wbr>FRAME</a></li>
149
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_request_type_class" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>TYPE_<wbr>CLASS</a></li>
150
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_request_type_reserved" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>TYPE_<wbr>RESERVED</a></li>
151
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_request_type_standard" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>TYPE_<wbr>STANDARD</a></li>
152
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_request_type_vendor" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>TYPE_<wbr>VENDOR</a></li>
153
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_transfer_cancelled" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>CANCELLED</a></li>
154
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_transfer_completed" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>COMPLETED</a></li>
155
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_transfer_error" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>ERROR</a></li>
156
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_transfer_free_buffer" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>FREE_<wbr>BUFFER</a></li>
157
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_transfer_free_transfer" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>FREE_<wbr>TRANSFER</a></li>
158
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_transfer_no_device" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>NO_<wbr>DEVICE</a></li>
159
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_transfer_overflow" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>OVERFLOW</a></li>
160
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_transfer_short_not_ok" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>SHORT_<wbr>NOT_<wbr>OK</a></li>
161
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_transfer_stall" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>STALL</a></li>
162
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_transfer_timed_out" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>TIMED_<wbr>OUT</a></li>
163
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_transfer_type_bulk" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>TYPE_<wbr>BULK</a></li>
164
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_transfer_type_control" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>TYPE_<wbr>CONTROL</a></li>
165
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_transfer_type_interrupt" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>TYPE_<wbr>INTERRUPT</a></li>
166
- <li class="tsd-kind-variable tsd-parent-kind-module"><a href="usb_bindings.html#libusb_transfer_type_isochronous" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>TYPE_<wbr>ISOCHRONOUS</a></li>
167
- </ul>
168
- </section>
169
- <section class="tsd-index-section ">
170
- <h3>Functions</h3>
171
- <ul class="tsd-index-list">
172
- <li class="tsd-kind-function tsd-parent-kind-module"><a href="usb_bindings.html#_disablehotplugevents" class="tsd-kind-icon">_disable<wbr>Hotplug<wbr>Events</a></li>
173
- <li class="tsd-kind-function tsd-parent-kind-module"><a href="usb_bindings.html#_enablehotplugevents" class="tsd-kind-icon">_enable<wbr>Hotplug<wbr>Events</a></li>
174
- <li class="tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter"><a href="usb_bindings.html#addlistener" class="tsd-kind-icon">add<wbr>Listener</a></li>
175
- <li class="tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter"><a href="usb_bindings.html#emit" class="tsd-kind-icon">emit</a></li>
176
- <li class="tsd-kind-function tsd-parent-kind-module"><a href="usb_bindings.html#getdevicelist" class="tsd-kind-icon">get<wbr>Device<wbr>List</a></li>
177
- <li class="tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter"><a href="usb_bindings.html#listenercount" class="tsd-kind-icon">listener<wbr>Count</a></li>
178
- <li class="tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter"><a href="usb_bindings.html#listeners" class="tsd-kind-icon">listeners</a></li>
179
- <li class="tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter"><a href="usb_bindings.html#off" class="tsd-kind-icon">off</a></li>
180
- <li class="tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter"><a href="usb_bindings.html#on" class="tsd-kind-icon">on</a></li>
181
- <li class="tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter"><a href="usb_bindings.html#once" class="tsd-kind-icon">once</a></li>
182
- <li class="tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter"><a href="usb_bindings.html#rawlisteners" class="tsd-kind-icon">raw<wbr>Listeners</a></li>
183
- <li class="tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter"><a href="usb_bindings.html#removealllisteners" class="tsd-kind-icon">remove<wbr>All<wbr>Listeners</a></li>
184
- <li class="tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter"><a href="usb_bindings.html#removelistener" class="tsd-kind-icon">remove<wbr>Listener</a></li>
185
- <li class="tsd-kind-function tsd-parent-kind-module"><a href="usb_bindings.html#setdebuglevel" class="tsd-kind-icon">set<wbr>Debug<wbr>Level</a></li>
186
- </ul>
187
- </section>
188
- </div>
189
- </section>
190
- </section>
191
- <section class="tsd-panel-group tsd-member-group ">
192
- <h2>References</h2>
193
- <section class="tsd-panel tsd-member tsd-kind-reference tsd-parent-kind-module">
194
- <a name="deviceevents" class="tsd-anchor"></a>
195
- <h3>Device<wbr>Events</h3>
196
- Re-exports <a href="../interfaces/usb.deviceevents.html">DeviceEvents</a>
197
- </section>
198
- </section>
199
- <section class="tsd-panel-group tsd-member-group ">
200
- <h2>Variables</h2>
201
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
202
- <a name="init_error" class="tsd-anchor"></a>
203
- <h3><span class="tsd-flag ts-flagConst">Const</span> INIT_<wbr>ERROR</h3>
204
- <div class="tsd-signature tsd-kind-icon">INIT_<wbr>ERROR<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
205
- <aside class="tsd-sources">
206
- <ul>
207
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L16">tsc/usb/bindings.ts:16</a></li>
208
- </ul>
209
- </aside>
210
- </section>
211
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
212
- <a name="libusb_class_application" class="tsd-anchor"></a>
213
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>CLASS_<wbr>APPLICATION</h3>
214
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>APPLICATION<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
215
- <aside class="tsd-sources">
216
- <ul>
217
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L114">tsc/usb/bindings.ts:114</a></li>
218
- </ul>
219
- </aside>
220
- <div class="tsd-comment tsd-typography">
221
- <div class="lead">
222
- <p>Application class</p>
223
- </div>
224
- </div>
225
- </section>
226
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
227
- <a name="libusb_class_audio" class="tsd-anchor"></a>
228
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>CLASS_<wbr>AUDIO</h3>
229
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>AUDIO<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
230
- <aside class="tsd-sources">
231
- <ul>
232
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L96">tsc/usb/bindings.ts:96</a></li>
233
- </ul>
234
- </aside>
235
- <div class="tsd-comment tsd-typography">
236
- <div class="lead">
237
- <p>Audio class</p>
238
- </div>
239
- </div>
240
- </section>
241
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
242
- <a name="libusb_class_comm" class="tsd-anchor"></a>
243
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>CLASS_<wbr>COMM</h3>
244
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>COMM<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
245
- <aside class="tsd-sources">
246
- <ul>
247
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L98">tsc/usb/bindings.ts:98</a></li>
248
- </ul>
249
- </aside>
250
- <div class="tsd-comment tsd-typography">
251
- <div class="lead">
252
- <p>Communications class</p>
253
- </div>
254
- </div>
255
- </section>
256
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
257
- <a name="libusb_class_data" class="tsd-anchor"></a>
258
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>CLASS_<wbr>DATA</h3>
259
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>DATA<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
260
- <aside class="tsd-sources">
261
- <ul>
262
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L110">tsc/usb/bindings.ts:110</a></li>
263
- </ul>
264
- </aside>
265
- <div class="tsd-comment tsd-typography">
266
- <div class="lead">
267
- <p>Data class</p>
268
- </div>
269
- </div>
270
- </section>
271
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
272
- <a name="libusb_class_hid" class="tsd-anchor"></a>
273
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>CLASS_<wbr>HID</h3>
274
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>HID<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
275
- <aside class="tsd-sources">
276
- <ul>
277
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L100">tsc/usb/bindings.ts:100</a></li>
278
- </ul>
279
- </aside>
280
- <div class="tsd-comment tsd-typography">
281
- <div class="lead">
282
- <p>Human Interface Device class</p>
283
- </div>
284
- </div>
285
- </section>
286
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
287
- <a name="libusb_class_hub" class="tsd-anchor"></a>
288
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>CLASS_<wbr>HUB</h3>
289
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>HUB<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
290
- <aside class="tsd-sources">
291
- <ul>
292
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L108">tsc/usb/bindings.ts:108</a></li>
293
- </ul>
294
- </aside>
295
- <div class="tsd-comment tsd-typography">
296
- <div class="lead">
297
- <p>Hub class</p>
298
- </div>
299
- </div>
300
- </section>
301
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
302
- <a name="libusb_class_mass_storage" class="tsd-anchor"></a>
303
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>CLASS_<wbr>MASS_<wbr>STORAGE</h3>
304
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>MASS_<wbr>STORAGE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
305
- <aside class="tsd-sources">
306
- <ul>
307
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L106">tsc/usb/bindings.ts:106</a></li>
308
- </ul>
309
- </aside>
310
- <div class="tsd-comment tsd-typography">
311
- <div class="lead">
312
- <p>Mass storage class</p>
313
- </div>
314
- </div>
315
- </section>
316
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
317
- <a name="libusb_class_per_interface" class="tsd-anchor"></a>
318
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>CLASS_<wbr>PER_<wbr>INTERFACE</h3>
319
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>PER_<wbr>INTERFACE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
320
- <aside class="tsd-sources">
321
- <ul>
322
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L94">tsc/usb/bindings.ts:94</a></li>
323
- </ul>
324
- </aside>
325
- <div class="tsd-comment tsd-typography">
326
- <div class="lead">
327
- <p>In the context of a \ref libusb_device_descriptor &quot;device descriptor&quot;,
328
- this bDeviceClass value indicates that each interface specifies its
329
- own class information and all interfaces operate independently.</p>
330
- </div>
331
- </div>
332
- </section>
333
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
334
- <a name="libusb_class_printer" class="tsd-anchor"></a>
335
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>CLASS_<wbr>PRINTER</h3>
336
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>PRINTER<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
337
- <aside class="tsd-sources">
338
- <ul>
339
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L102">tsc/usb/bindings.ts:102</a></li>
340
- </ul>
341
- </aside>
342
- <div class="tsd-comment tsd-typography">
343
- <div class="lead">
344
- <p>Printer class</p>
345
- </div>
346
- </div>
347
- </section>
348
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
349
- <a name="libusb_class_ptp" class="tsd-anchor"></a>
350
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>CLASS_<wbr>PTP</h3>
351
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>PTP<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
352
- <aside class="tsd-sources">
353
- <ul>
354
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L104">tsc/usb/bindings.ts:104</a></li>
355
- </ul>
356
- </aside>
357
- <div class="tsd-comment tsd-typography">
358
- <div class="lead">
359
- <p>Image class</p>
360
- </div>
361
- </div>
362
- </section>
363
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
364
- <a name="libusb_class_vendor_spec" class="tsd-anchor"></a>
365
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>CLASS_<wbr>VENDOR_<wbr>SPEC</h3>
366
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>VENDOR_<wbr>SPEC<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
367
- <aside class="tsd-sources">
368
- <ul>
369
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L116">tsc/usb/bindings.ts:116</a></li>
370
- </ul>
371
- </aside>
372
- <div class="tsd-comment tsd-typography">
373
- <div class="lead">
374
- <p>Class is vendor-specific</p>
375
- </div>
376
- </div>
377
- </section>
378
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
379
- <a name="libusb_class_wireless" class="tsd-anchor"></a>
380
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>CLASS_<wbr>WIRELESS</h3>
381
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>WIRELESS<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
382
- <aside class="tsd-sources">
383
- <ul>
384
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L112">tsc/usb/bindings.ts:112</a></li>
385
- </ul>
386
- </aside>
387
- <div class="tsd-comment tsd-typography">
388
- <div class="lead">
389
- <p>Wireless class</p>
390
- </div>
391
- </div>
392
- </section>
393
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
394
- <a name="libusb_control_setup_size" class="tsd-anchor"></a>
395
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>CONTROL_<wbr>SETUP_<wbr>SIZE</h3>
396
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>CONTROL_<wbr>SETUP_<wbr>SIZE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
397
- <aside class="tsd-sources">
398
- <ul>
399
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L257">tsc/usb/bindings.ts:257</a></li>
400
- </ul>
401
- </aside>
402
- </section>
403
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
404
- <a name="libusb_dt_bos" class="tsd-anchor"></a>
405
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>DT_<wbr>BOS</h3>
406
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>BOS<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
407
- <aside class="tsd-sources">
408
- <ul>
409
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L149">tsc/usb/bindings.ts:149</a></li>
410
- </ul>
411
- </aside>
412
- </section>
413
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
414
- <a name="libusb_dt_bos_size" class="tsd-anchor"></a>
415
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>DT_<wbr>BOS_<wbr>SIZE</h3>
416
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>BOS_<wbr>SIZE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
417
- <aside class="tsd-sources">
418
- <ul>
419
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L258">tsc/usb/bindings.ts:258</a></li>
420
- </ul>
421
- </aside>
422
- </section>
423
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
424
- <a name="libusb_dt_config" class="tsd-anchor"></a>
425
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>DT_<wbr>CONFIG</h3>
426
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>CONFIG<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
427
- <aside class="tsd-sources">
428
- <ul>
429
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L146">tsc/usb/bindings.ts:146</a></li>
430
- </ul>
431
- </aside>
432
- <div class="tsd-comment tsd-typography">
433
- <div class="lead">
434
- <p>Configuration descriptor. See libusb_config_descriptor.</p>
435
- </div>
436
- </div>
437
- </section>
438
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
439
- <a name="libusb_dt_device" class="tsd-anchor"></a>
440
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>DT_<wbr>DEVICE</h3>
441
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>DEVICE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
442
- <aside class="tsd-sources">
443
- <ul>
444
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L144">tsc/usb/bindings.ts:144</a></li>
445
- </ul>
446
- </aside>
447
- <div class="tsd-comment tsd-typography">
448
- <div class="lead">
449
- <p>Device descriptor. See libusb_device_descriptor.</p>
450
- </div>
451
- </div>
452
- </section>
453
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
454
- <a name="libusb_dt_endpoint" class="tsd-anchor"></a>
455
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>DT_<wbr>ENDPOINT</h3>
456
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>ENDPOINT<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
457
- <aside class="tsd-sources">
458
- <ul>
459
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L153">tsc/usb/bindings.ts:153</a></li>
460
- </ul>
461
- </aside>
462
- <div class="tsd-comment tsd-typography">
463
- <div class="lead">
464
- <p>Endpoint descriptor. See libusb_endpoint_descriptor.</p>
465
- </div>
466
- </div>
467
- </section>
468
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
469
- <a name="libusb_dt_hid" class="tsd-anchor"></a>
470
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>DT_<wbr>HID</h3>
471
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>HID<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
472
- <aside class="tsd-sources">
473
- <ul>
474
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L155">tsc/usb/bindings.ts:155</a></li>
475
- </ul>
476
- </aside>
477
- <div class="tsd-comment tsd-typography">
478
- <div class="lead">
479
- <p>HID descriptor</p>
480
- </div>
481
- </div>
482
- </section>
483
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
484
- <a name="libusb_dt_hub" class="tsd-anchor"></a>
485
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>DT_<wbr>HUB</h3>
486
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>HUB<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
487
- <aside class="tsd-sources">
488
- <ul>
489
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L161">tsc/usb/bindings.ts:161</a></li>
490
- </ul>
491
- </aside>
492
- <div class="tsd-comment tsd-typography">
493
- <div class="lead">
494
- <p>Hub descriptor</p>
495
- </div>
496
- </div>
497
- </section>
498
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
499
- <a name="libusb_dt_interface" class="tsd-anchor"></a>
500
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>DT_<wbr>INTERFACE</h3>
501
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>INTERFACE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
502
- <aside class="tsd-sources">
503
- <ul>
504
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L151">tsc/usb/bindings.ts:151</a></li>
505
- </ul>
506
- </aside>
507
- <div class="tsd-comment tsd-typography">
508
- <div class="lead">
509
- <p>Interface descriptor. See libusb_interface_descriptor.</p>
510
- </div>
511
- </div>
512
- </section>
513
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
514
- <a name="libusb_dt_physical" class="tsd-anchor"></a>
515
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>DT_<wbr>PHYSICAL</h3>
516
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>PHYSICAL<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
517
- <aside class="tsd-sources">
518
- <ul>
519
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L159">tsc/usb/bindings.ts:159</a></li>
520
- </ul>
521
- </aside>
522
- <div class="tsd-comment tsd-typography">
523
- <div class="lead">
524
- <p>Physical descriptor</p>
525
- </div>
526
- </div>
527
- </section>
528
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
529
- <a name="libusb_dt_report" class="tsd-anchor"></a>
530
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>DT_<wbr>REPORT</h3>
531
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>REPORT<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
532
- <aside class="tsd-sources">
533
- <ul>
534
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L157">tsc/usb/bindings.ts:157</a></li>
535
- </ul>
536
- </aside>
537
- <div class="tsd-comment tsd-typography">
538
- <div class="lead">
539
- <p>HID report descriptor</p>
540
- </div>
541
- </div>
542
- </section>
543
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
544
- <a name="libusb_dt_string" class="tsd-anchor"></a>
545
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>DT_<wbr>STRING</h3>
546
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>STRING<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
547
- <aside class="tsd-sources">
548
- <ul>
549
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L148">tsc/usb/bindings.ts:148</a></li>
550
- </ul>
551
- </aside>
552
- <div class="tsd-comment tsd-typography">
553
- <div class="lead">
554
- <p>String descriptor</p>
555
- </div>
556
- </div>
557
- </section>
558
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
559
- <a name="libusb_endpoint_in" class="tsd-anchor"></a>
560
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ENDPOINT_<wbr>IN</h3>
561
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ENDPOINT_<wbr>IN<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
562
- <aside class="tsd-sources">
563
- <ul>
564
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L165">tsc/usb/bindings.ts:165</a></li>
565
- </ul>
566
- </aside>
567
- <div class="tsd-comment tsd-typography">
568
- <div class="lead">
569
- <p>In: device-to-host</p>
570
- </div>
571
- </div>
572
- </section>
573
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
574
- <a name="libusb_endpoint_out" class="tsd-anchor"></a>
575
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ENDPOINT_<wbr>OUT</h3>
576
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ENDPOINT_<wbr>OUT<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
577
- <aside class="tsd-sources">
578
- <ul>
579
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L167">tsc/usb/bindings.ts:167</a></li>
580
- </ul>
581
- </aside>
582
- <div class="tsd-comment tsd-typography">
583
- <div class="lead">
584
- <p>Out: host-to-device</p>
585
- </div>
586
- </div>
587
- </section>
588
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
589
- <a name="libusb_error_access" class="tsd-anchor"></a>
590
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ERROR_<wbr>ACCESS</h3>
591
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>ACCESS<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
592
- <aside class="tsd-sources">
593
- <ul>
594
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L266">tsc/usb/bindings.ts:266</a></li>
595
- </ul>
596
- </aside>
597
- <div class="tsd-comment tsd-typography">
598
- <div class="lead">
599
- <p>Access denied (insufficient permissions)</p>
600
- </div>
601
- </div>
602
- </section>
603
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
604
- <a name="libusb_error_busy" class="tsd-anchor"></a>
605
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ERROR_<wbr>BUSY</h3>
606
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>BUSY<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
607
- <aside class="tsd-sources">
608
- <ul>
609
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L272">tsc/usb/bindings.ts:272</a></li>
610
- </ul>
611
- </aside>
612
- <div class="tsd-comment tsd-typography">
613
- <div class="lead">
614
- <p>Resource busy</p>
615
- </div>
616
- </div>
617
- </section>
618
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
619
- <a name="libusb_error_interrupted" class="tsd-anchor"></a>
620
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ERROR_<wbr>INTERRUPTED</h3>
621
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>INTERRUPTED<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
622
- <aside class="tsd-sources">
623
- <ul>
624
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L280">tsc/usb/bindings.ts:280</a></li>
625
- </ul>
626
- </aside>
627
- <div class="tsd-comment tsd-typography">
628
- <div class="lead">
629
- <p>System call interrupted (perhaps due to signal)</p>
630
- </div>
631
- </div>
632
- </section>
633
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
634
- <a name="libusb_error_invalid_param" class="tsd-anchor"></a>
635
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ERROR_<wbr>INVALID_<wbr>PARAM</h3>
636
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>INVALID_<wbr>PARAM<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
637
- <aside class="tsd-sources">
638
- <ul>
639
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L264">tsc/usb/bindings.ts:264</a></li>
640
- </ul>
641
- </aside>
642
- <div class="tsd-comment tsd-typography">
643
- <div class="lead">
644
- <p>Invalid parameter</p>
645
- </div>
646
- </div>
647
- </section>
648
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
649
- <a name="libusb_error_io" class="tsd-anchor"></a>
650
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ERROR_<wbr>IO</h3>
651
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>IO<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
652
- <aside class="tsd-sources">
653
- <ul>
654
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L262">tsc/usb/bindings.ts:262</a></li>
655
- </ul>
656
- </aside>
657
- <div class="tsd-comment tsd-typography">
658
- <div class="lead">
659
- <p>Input/output error</p>
660
- </div>
661
- </div>
662
- </section>
663
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
664
- <a name="libusb_error_not_found" class="tsd-anchor"></a>
665
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ERROR_<wbr>NOT_<wbr>FOUND</h3>
666
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>NOT_<wbr>FOUND<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
667
- <aside class="tsd-sources">
668
- <ul>
669
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L270">tsc/usb/bindings.ts:270</a></li>
670
- </ul>
671
- </aside>
672
- <div class="tsd-comment tsd-typography">
673
- <div class="lead">
674
- <p>Entity not found</p>
675
- </div>
676
- </div>
677
- </section>
678
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
679
- <a name="libusb_error_not_supported" class="tsd-anchor"></a>
680
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ERROR_<wbr>NOT_<wbr>SUPPORTED</h3>
681
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>NOT_<wbr>SUPPORTED<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
682
- <aside class="tsd-sources">
683
- <ul>
684
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L284">tsc/usb/bindings.ts:284</a></li>
685
- </ul>
686
- </aside>
687
- <div class="tsd-comment tsd-typography">
688
- <div class="lead">
689
- <p>Operation not supported or unimplemented on this platform</p>
690
- </div>
691
- </div>
692
- </section>
693
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
694
- <a name="libusb_error_no_device" class="tsd-anchor"></a>
695
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ERROR_<wbr>NO_<wbr>DEVICE</h3>
696
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>NO_<wbr>DEVICE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
697
- <aside class="tsd-sources">
698
- <ul>
699
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L268">tsc/usb/bindings.ts:268</a></li>
700
- </ul>
701
- </aside>
702
- <div class="tsd-comment tsd-typography">
703
- <div class="lead">
704
- <p>No such device (it may have been disconnected)</p>
705
- </div>
706
- </div>
707
- </section>
708
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
709
- <a name="libusb_error_no_mem" class="tsd-anchor"></a>
710
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ERROR_<wbr>NO_<wbr>MEM</h3>
711
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>NO_<wbr>MEM<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
712
- <aside class="tsd-sources">
713
- <ul>
714
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L282">tsc/usb/bindings.ts:282</a></li>
715
- </ul>
716
- </aside>
717
- <div class="tsd-comment tsd-typography">
718
- <div class="lead">
719
- <p>Insufficient memory</p>
720
- </div>
721
- </div>
722
- </section>
723
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
724
- <a name="libusb_error_other" class="tsd-anchor"></a>
725
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ERROR_<wbr>OTHER</h3>
726
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>OTHER<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
727
- <aside class="tsd-sources">
728
- <ul>
729
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L286">tsc/usb/bindings.ts:286</a></li>
730
- </ul>
731
- </aside>
732
- <div class="tsd-comment tsd-typography">
733
- <div class="lead">
734
- <p>Other error</p>
735
- </div>
736
- </div>
737
- </section>
738
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
739
- <a name="libusb_error_overflow" class="tsd-anchor"></a>
740
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ERROR_<wbr>OVERFLOW</h3>
741
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>OVERFLOW<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
742
- <aside class="tsd-sources">
743
- <ul>
744
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L276">tsc/usb/bindings.ts:276</a></li>
745
- </ul>
746
- </aside>
747
- <div class="tsd-comment tsd-typography">
748
- <div class="lead">
749
- <p>Overflow</p>
750
- </div>
751
- </div>
752
- </section>
753
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
754
- <a name="libusb_error_pipe" class="tsd-anchor"></a>
755
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ERROR_<wbr>PIPE</h3>
756
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>PIPE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
757
- <aside class="tsd-sources">
758
- <ul>
759
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L278">tsc/usb/bindings.ts:278</a></li>
760
- </ul>
761
- </aside>
762
- <div class="tsd-comment tsd-typography">
763
- <div class="lead">
764
- <p>Pipe error</p>
765
- </div>
766
- </div>
767
- </section>
768
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
769
- <a name="libusb_error_timeout" class="tsd-anchor"></a>
770
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ERROR_<wbr>TIMEOUT</h3>
771
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>TIMEOUT<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
772
- <aside class="tsd-sources">
773
- <ul>
774
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L274">tsc/usb/bindings.ts:274</a></li>
775
- </ul>
776
- </aside>
777
- <div class="tsd-comment tsd-typography">
778
- <div class="lead">
779
- <p>Operation timed out</p>
780
- </div>
781
- </div>
782
- </section>
783
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
784
- <a name="libusb_iso_sync_type_adaptive" class="tsd-anchor"></a>
785
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ISO_<wbr>SYNC_<wbr>TYPE_<wbr>ADAPTIVE</h3>
786
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>SYNC_<wbr>TYPE_<wbr>ADAPTIVE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
787
- <aside class="tsd-sources">
788
- <ul>
789
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L185">tsc/usb/bindings.ts:185</a></li>
790
- </ul>
791
- </aside>
792
- <div class="tsd-comment tsd-typography">
793
- <div class="lead">
794
- <p>Adaptive</p>
795
- </div>
796
- </div>
797
- </section>
798
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
799
- <a name="libusb_iso_sync_type_async" class="tsd-anchor"></a>
800
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ISO_<wbr>SYNC_<wbr>TYPE_<wbr>ASYNC</h3>
801
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>SYNC_<wbr>TYPE_<wbr>ASYNC<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
802
- <aside class="tsd-sources">
803
- <ul>
804
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L183">tsc/usb/bindings.ts:183</a></li>
805
- </ul>
806
- </aside>
807
- <div class="tsd-comment tsd-typography">
808
- <div class="lead">
809
- <p>Asynchronous</p>
810
- </div>
811
- </div>
812
- </section>
813
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
814
- <a name="libusb_iso_sync_type_none" class="tsd-anchor"></a>
815
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ISO_<wbr>SYNC_<wbr>TYPE_<wbr>NONE</h3>
816
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>SYNC_<wbr>TYPE_<wbr>NONE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
817
- <aside class="tsd-sources">
818
- <ul>
819
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L181">tsc/usb/bindings.ts:181</a></li>
820
- </ul>
821
- </aside>
822
- <div class="tsd-comment tsd-typography">
823
- <div class="lead">
824
- <p>No synchronization</p>
825
- </div>
826
- </div>
827
- </section>
828
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
829
- <a name="libusb_iso_sync_type_sync" class="tsd-anchor"></a>
830
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ISO_<wbr>SYNC_<wbr>TYPE_<wbr>SYNC</h3>
831
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>SYNC_<wbr>TYPE_<wbr>SYNC<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
832
- <aside class="tsd-sources">
833
- <ul>
834
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L187">tsc/usb/bindings.ts:187</a></li>
835
- </ul>
836
- </aside>
837
- <div class="tsd-comment tsd-typography">
838
- <div class="lead">
839
- <p>Synchronous</p>
840
- </div>
841
- </div>
842
- </section>
843
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
844
- <a name="libusb_iso_usage_type_data" class="tsd-anchor"></a>
845
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ISO_<wbr>USAGE_<wbr>TYPE_<wbr>DATA</h3>
846
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>USAGE_<wbr>TYPE_<wbr>DATA<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
847
- <aside class="tsd-sources">
848
- <ul>
849
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L191">tsc/usb/bindings.ts:191</a></li>
850
- </ul>
851
- </aside>
852
- <div class="tsd-comment tsd-typography">
853
- <div class="lead">
854
- <p>Data endpoint</p>
855
- </div>
856
- </div>
857
- </section>
858
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
859
- <a name="libusb_iso_usage_type_feedback" class="tsd-anchor"></a>
860
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ISO_<wbr>USAGE_<wbr>TYPE_<wbr>FEEDBACK</h3>
861
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>USAGE_<wbr>TYPE_<wbr>FEEDBACK<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
862
- <aside class="tsd-sources">
863
- <ul>
864
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L193">tsc/usb/bindings.ts:193</a></li>
865
- </ul>
866
- </aside>
867
- <div class="tsd-comment tsd-typography">
868
- <div class="lead">
869
- <p>Feedback endpoint</p>
870
- </div>
871
- </div>
872
- </section>
873
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
874
- <a name="libusb_iso_usage_type_implicit" class="tsd-anchor"></a>
875
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>ISO_<wbr>USAGE_<wbr>TYPE_<wbr>IMPLICIT</h3>
876
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>USAGE_<wbr>TYPE_<wbr>IMPLICIT<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
877
- <aside class="tsd-sources">
878
- <ul>
879
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L195">tsc/usb/bindings.ts:195</a></li>
880
- </ul>
881
- </aside>
882
- <div class="tsd-comment tsd-typography">
883
- <div class="lead">
884
- <p>Implicit feedback Data endpoint</p>
885
- </div>
886
- </div>
887
- </section>
888
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
889
- <a name="libusb_recipient_device" class="tsd-anchor"></a>
890
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>RECIPIENT_<wbr>DEVICE</h3>
891
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>RECIPIENT_<wbr>DEVICE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
892
- <aside class="tsd-sources">
893
- <ul>
894
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L249">tsc/usb/bindings.ts:249</a></li>
895
- </ul>
896
- </aside>
897
- <div class="tsd-comment tsd-typography">
898
- <div class="lead">
899
- <p>Device</p>
900
- </div>
901
- </div>
902
- </section>
903
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
904
- <a name="libusb_recipient_endpoint" class="tsd-anchor"></a>
905
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>RECIPIENT_<wbr>ENDPOINT</h3>
906
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>RECIPIENT_<wbr>ENDPOINT<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
907
- <aside class="tsd-sources">
908
- <ul>
909
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L253">tsc/usb/bindings.ts:253</a></li>
910
- </ul>
911
- </aside>
912
- <div class="tsd-comment tsd-typography">
913
- <div class="lead">
914
- <p>Endpoint</p>
915
- </div>
916
- </div>
917
- </section>
918
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
919
- <a name="libusb_recipient_interface" class="tsd-anchor"></a>
920
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>RECIPIENT_<wbr>INTERFACE</h3>
921
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>RECIPIENT_<wbr>INTERFACE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
922
- <aside class="tsd-sources">
923
- <ul>
924
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L251">tsc/usb/bindings.ts:251</a></li>
925
- </ul>
926
- </aside>
927
- <div class="tsd-comment tsd-typography">
928
- <div class="lead">
929
- <p>Interface</p>
930
- </div>
931
- </div>
932
- </section>
933
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
934
- <a name="libusb_recipient_other" class="tsd-anchor"></a>
935
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>RECIPIENT_<wbr>OTHER</h3>
936
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>RECIPIENT_<wbr>OTHER<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
937
- <aside class="tsd-sources">
938
- <ul>
939
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L255">tsc/usb/bindings.ts:255</a></li>
940
- </ul>
941
- </aside>
942
- <div class="tsd-comment tsd-typography">
943
- <div class="lead">
944
- <p>Other</p>
945
- </div>
946
- </div>
947
- </section>
948
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
949
- <a name="libusb_request_clear_feature" class="tsd-anchor"></a>
950
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>REQUEST_<wbr>CLEAR_<wbr>FEATURE</h3>
951
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>CLEAR_<wbr>FEATURE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
952
- <aside class="tsd-sources">
953
- <ul>
954
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L122">tsc/usb/bindings.ts:122</a></li>
955
- </ul>
956
- </aside>
957
- <div class="tsd-comment tsd-typography">
958
- <div class="lead">
959
- <p>Clear or disable a specific feature</p>
960
- </div>
961
- </div>
962
- </section>
963
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
964
- <a name="libusb_request_get_configuration" class="tsd-anchor"></a>
965
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>REQUEST_<wbr>GET_<wbr>CONFIGURATION</h3>
966
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>GET_<wbr>CONFIGURATION<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
967
- <aside class="tsd-sources">
968
- <ul>
969
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L132">tsc/usb/bindings.ts:132</a></li>
970
- </ul>
971
- </aside>
972
- <div class="tsd-comment tsd-typography">
973
- <div class="lead">
974
- <p>Get the current device configuration value</p>
975
- </div>
976
- </div>
977
- </section>
978
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
979
- <a name="libusb_request_get_descriptor" class="tsd-anchor"></a>
980
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>REQUEST_<wbr>GET_<wbr>DESCRIPTOR</h3>
981
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>GET_<wbr>DESCRIPTOR<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
982
- <aside class="tsd-sources">
983
- <ul>
984
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L128">tsc/usb/bindings.ts:128</a></li>
985
- </ul>
986
- </aside>
987
- <div class="tsd-comment tsd-typography">
988
- <div class="lead">
989
- <p>Get the specified descriptor</p>
990
- </div>
991
- </div>
992
- </section>
993
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
994
- <a name="libusb_request_get_interface" class="tsd-anchor"></a>
995
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>REQUEST_<wbr>GET_<wbr>INTERFACE</h3>
996
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>GET_<wbr>INTERFACE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
997
- <aside class="tsd-sources">
998
- <ul>
999
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L136">tsc/usb/bindings.ts:136</a></li>
1000
- </ul>
1001
- </aside>
1002
- <div class="tsd-comment tsd-typography">
1003
- <div class="lead">
1004
- <p>Return the selected alternate setting for the specified interface</p>
1005
- </div>
1006
- </div>
1007
- </section>
1008
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1009
- <a name="libusb_request_get_status" class="tsd-anchor"></a>
1010
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>REQUEST_<wbr>GET_<wbr>STATUS</h3>
1011
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>GET_<wbr>STATUS<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1012
- <aside class="tsd-sources">
1013
- <ul>
1014
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L120">tsc/usb/bindings.ts:120</a></li>
1015
- </ul>
1016
- </aside>
1017
- <div class="tsd-comment tsd-typography">
1018
- <div class="lead">
1019
- <p>Request status of the specific recipient</p>
1020
- </div>
1021
- </div>
1022
- </section>
1023
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1024
- <a name="libusb_request_set_address" class="tsd-anchor"></a>
1025
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>ADDRESS</h3>
1026
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>ADDRESS<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1027
- <aside class="tsd-sources">
1028
- <ul>
1029
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L126">tsc/usb/bindings.ts:126</a></li>
1030
- </ul>
1031
- </aside>
1032
- <div class="tsd-comment tsd-typography">
1033
- <div class="lead">
1034
- <p>Set device address for all future accesses</p>
1035
- </div>
1036
- </div>
1037
- </section>
1038
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1039
- <a name="libusb_request_set_configuration" class="tsd-anchor"></a>
1040
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>CONFIGURATION</h3>
1041
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>CONFIGURATION<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1042
- <aside class="tsd-sources">
1043
- <ul>
1044
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L134">tsc/usb/bindings.ts:134</a></li>
1045
- </ul>
1046
- </aside>
1047
- <div class="tsd-comment tsd-typography">
1048
- <div class="lead">
1049
- <p>Set device configuration</p>
1050
- </div>
1051
- </div>
1052
- </section>
1053
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1054
- <a name="libusb_request_set_descriptor" class="tsd-anchor"></a>
1055
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>DESCRIPTOR</h3>
1056
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>DESCRIPTOR<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1057
- <aside class="tsd-sources">
1058
- <ul>
1059
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L130">tsc/usb/bindings.ts:130</a></li>
1060
- </ul>
1061
- </aside>
1062
- <div class="tsd-comment tsd-typography">
1063
- <div class="lead">
1064
- <p>Used to update existing descriptors or add new descriptors</p>
1065
- </div>
1066
- </div>
1067
- </section>
1068
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1069
- <a name="libusb_request_set_feature" class="tsd-anchor"></a>
1070
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>FEATURE</h3>
1071
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>FEATURE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1072
- <aside class="tsd-sources">
1073
- <ul>
1074
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L124">tsc/usb/bindings.ts:124</a></li>
1075
- </ul>
1076
- </aside>
1077
- <div class="tsd-comment tsd-typography">
1078
- <div class="lead">
1079
- <p>Set or enable a specific feature</p>
1080
- </div>
1081
- </div>
1082
- </section>
1083
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1084
- <a name="libusb_request_set_interface" class="tsd-anchor"></a>
1085
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>INTERFACE</h3>
1086
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>INTERFACE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1087
- <aside class="tsd-sources">
1088
- <ul>
1089
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L138">tsc/usb/bindings.ts:138</a></li>
1090
- </ul>
1091
- </aside>
1092
- <div class="tsd-comment tsd-typography">
1093
- <div class="lead">
1094
- <p>Select an alternate interface for the specified interface</p>
1095
- </div>
1096
- </div>
1097
- </section>
1098
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1099
- <a name="libusb_request_synch_frame" class="tsd-anchor"></a>
1100
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>REQUEST_<wbr>SYNCH_<wbr>FRAME</h3>
1101
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SYNCH_<wbr>FRAME<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1102
- <aside class="tsd-sources">
1103
- <ul>
1104
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L140">tsc/usb/bindings.ts:140</a></li>
1105
- </ul>
1106
- </aside>
1107
- <div class="tsd-comment tsd-typography">
1108
- <div class="lead">
1109
- <p>Set then report an endpoint&#39;s synchronization frame</p>
1110
- </div>
1111
- </div>
1112
- </section>
1113
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1114
- <a name="libusb_request_type_class" class="tsd-anchor"></a>
1115
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>REQUEST_<wbr>TYPE_<wbr>CLASS</h3>
1116
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>TYPE_<wbr>CLASS<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1117
- <aside class="tsd-sources">
1118
- <ul>
1119
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L241">tsc/usb/bindings.ts:241</a></li>
1120
- </ul>
1121
- </aside>
1122
- <div class="tsd-comment tsd-typography">
1123
- <div class="lead">
1124
- <p>Class</p>
1125
- </div>
1126
- </div>
1127
- </section>
1128
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1129
- <a name="libusb_request_type_reserved" class="tsd-anchor"></a>
1130
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>REQUEST_<wbr>TYPE_<wbr>RESERVED</h3>
1131
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>TYPE_<wbr>RESERVED<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1132
- <aside class="tsd-sources">
1133
- <ul>
1134
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L245">tsc/usb/bindings.ts:245</a></li>
1135
- </ul>
1136
- </aside>
1137
- <div class="tsd-comment tsd-typography">
1138
- <div class="lead">
1139
- <p>Reserved</p>
1140
- </div>
1141
- </div>
1142
- </section>
1143
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1144
- <a name="libusb_request_type_standard" class="tsd-anchor"></a>
1145
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>REQUEST_<wbr>TYPE_<wbr>STANDARD</h3>
1146
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>TYPE_<wbr>STANDARD<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1147
- <aside class="tsd-sources">
1148
- <ul>
1149
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L239">tsc/usb/bindings.ts:239</a></li>
1150
- </ul>
1151
- </aside>
1152
- <div class="tsd-comment tsd-typography">
1153
- <div class="lead">
1154
- <p>Standard</p>
1155
- </div>
1156
- </div>
1157
- </section>
1158
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1159
- <a name="libusb_request_type_vendor" class="tsd-anchor"></a>
1160
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>REQUEST_<wbr>TYPE_<wbr>VENDOR</h3>
1161
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>TYPE_<wbr>VENDOR<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1162
- <aside class="tsd-sources">
1163
- <ul>
1164
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L243">tsc/usb/bindings.ts:243</a></li>
1165
- </ul>
1166
- </aside>
1167
- <div class="tsd-comment tsd-typography">
1168
- <div class="lead">
1169
- <p>Vendor</p>
1170
- </div>
1171
- </div>
1172
- </section>
1173
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1174
- <a name="libusb_transfer_cancelled" class="tsd-anchor"></a>
1175
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>TRANSFER_<wbr>CANCELLED</h3>
1176
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>CANCELLED<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1177
- <aside class="tsd-sources">
1178
- <ul>
1179
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L208">tsc/usb/bindings.ts:208</a></li>
1180
- </ul>
1181
- </aside>
1182
- <div class="tsd-comment tsd-typography">
1183
- <div class="lead">
1184
- <p>Transfer was cancelled</p>
1185
- </div>
1186
- </div>
1187
- </section>
1188
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1189
- <a name="libusb_transfer_completed" class="tsd-anchor"></a>
1190
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>TRANSFER_<wbr>COMPLETED</h3>
1191
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>COMPLETED<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1192
- <aside class="tsd-sources">
1193
- <ul>
1194
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L202">tsc/usb/bindings.ts:202</a></li>
1195
- </ul>
1196
- </aside>
1197
- <div class="tsd-comment tsd-typography">
1198
- <div class="lead">
1199
- <p>Transfer completed without error. Note that this does not indicate
1200
- that the entire amount of requested data was transferred.</p>
1201
- </div>
1202
- </div>
1203
- </section>
1204
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1205
- <a name="libusb_transfer_error" class="tsd-anchor"></a>
1206
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>TRANSFER_<wbr>ERROR</h3>
1207
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>ERROR<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1208
- <aside class="tsd-sources">
1209
- <ul>
1210
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L204">tsc/usb/bindings.ts:204</a></li>
1211
- </ul>
1212
- </aside>
1213
- <div class="tsd-comment tsd-typography">
1214
- <div class="lead">
1215
- <p>Transfer failed</p>
1216
- </div>
1217
- </div>
1218
- </section>
1219
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1220
- <a name="libusb_transfer_free_buffer" class="tsd-anchor"></a>
1221
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>TRANSFER_<wbr>FREE_<wbr>BUFFER</h3>
1222
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>FREE_<wbr>BUFFER<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1223
- <aside class="tsd-sources">
1224
- <ul>
1225
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L228">tsc/usb/bindings.ts:228</a></li>
1226
- </ul>
1227
- </aside>
1228
- <div class="tsd-comment tsd-typography">
1229
- <div class="lead">
1230
- <p>Automatically free() transfer buffer during libusb_free_transfer().
1231
- Note that buffers allocated with libusb_dev_mem_alloc() should not
1232
- be attempted freed in this way, since free() is not an appropriate
1233
- way to release such memory.</p>
1234
- </div>
1235
- </div>
1236
- </section>
1237
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1238
- <a name="libusb_transfer_free_transfer" class="tsd-anchor"></a>
1239
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>TRANSFER_<wbr>FREE_<wbr>TRANSFER</h3>
1240
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>FREE_<wbr>TRANSFER<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1241
- <aside class="tsd-sources">
1242
- <ul>
1243
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L235">tsc/usb/bindings.ts:235</a></li>
1244
- </ul>
1245
- </aside>
1246
- <div class="tsd-comment tsd-typography">
1247
- <div class="lead">
1248
- <p>Automatically call libusb_free_transfer() after callback returns.
1249
- If this flag is set, it is illegal to call libusb_free_transfer()
1250
- from your transfer callback, as this will result in a double-free
1251
- when this flag is acted upon.</p>
1252
- </div>
1253
- </div>
1254
- </section>
1255
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1256
- <a name="libusb_transfer_no_device" class="tsd-anchor"></a>
1257
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>TRANSFER_<wbr>NO_<wbr>DEVICE</h3>
1258
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>NO_<wbr>DEVICE<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1259
- <aside class="tsd-sources">
1260
- <ul>
1261
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L215">tsc/usb/bindings.ts:215</a></li>
1262
- </ul>
1263
- </aside>
1264
- <div class="tsd-comment tsd-typography">
1265
- <div class="lead">
1266
- <p>Device was disconnected</p>
1267
- </div>
1268
- </div>
1269
- </section>
1270
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1271
- <a name="libusb_transfer_overflow" class="tsd-anchor"></a>
1272
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>TRANSFER_<wbr>OVERFLOW</h3>
1273
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>OVERFLOW<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1274
- <aside class="tsd-sources">
1275
- <ul>
1276
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L217">tsc/usb/bindings.ts:217</a></li>
1277
- </ul>
1278
- </aside>
1279
- <div class="tsd-comment tsd-typography">
1280
- <div class="lead">
1281
- <p>Device sent more data than requested</p>
1282
- </div>
1283
- </div>
1284
- </section>
1285
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1286
- <a name="libusb_transfer_short_not_ok" class="tsd-anchor"></a>
1287
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>TRANSFER_<wbr>SHORT_<wbr>NOT_<wbr>OK</h3>
1288
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>SHORT_<wbr>NOT_<wbr>OK<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1289
- <aside class="tsd-sources">
1290
- <ul>
1291
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L221">tsc/usb/bindings.ts:221</a></li>
1292
- </ul>
1293
- </aside>
1294
- <div class="tsd-comment tsd-typography">
1295
- <div class="lead">
1296
- <p>Report short frames as errors</p>
1297
- </div>
1298
- </div>
1299
- </section>
1300
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1301
- <a name="libusb_transfer_stall" class="tsd-anchor"></a>
1302
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>TRANSFER_<wbr>STALL</h3>
1303
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>STALL<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1304
- <aside class="tsd-sources">
1305
- <ul>
1306
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L213">tsc/usb/bindings.ts:213</a></li>
1307
- </ul>
1308
- </aside>
1309
- <div class="tsd-comment tsd-typography">
1310
- <div class="lead">
1311
- <p>For bulk/interrupt endpoints: halt condition detected (endpoint
1312
- stalled). For control endpoints: control request not supported.</p>
1313
- </div>
1314
- </div>
1315
- </section>
1316
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1317
- <a name="libusb_transfer_timed_out" class="tsd-anchor"></a>
1318
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>TRANSFER_<wbr>TIMED_<wbr>OUT</h3>
1319
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>TIMED_<wbr>OUT<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1320
- <aside class="tsd-sources">
1321
- <ul>
1322
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L206">tsc/usb/bindings.ts:206</a></li>
1323
- </ul>
1324
- </aside>
1325
- <div class="tsd-comment tsd-typography">
1326
- <div class="lead">
1327
- <p>Transfer timed out</p>
1328
- </div>
1329
- </div>
1330
- </section>
1331
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1332
- <a name="libusb_transfer_type_bulk" class="tsd-anchor"></a>
1333
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>TRANSFER_<wbr>TYPE_<wbr>BULK</h3>
1334
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>TYPE_<wbr>BULK<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1335
- <aside class="tsd-sources">
1336
- <ul>
1337
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L175">tsc/usb/bindings.ts:175</a></li>
1338
- </ul>
1339
- </aside>
1340
- <div class="tsd-comment tsd-typography">
1341
- <div class="lead">
1342
- <p>Bulk endpoint</p>
1343
- </div>
1344
- </div>
1345
- </section>
1346
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1347
- <a name="libusb_transfer_type_control" class="tsd-anchor"></a>
1348
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>TRANSFER_<wbr>TYPE_<wbr>CONTROL</h3>
1349
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>TYPE_<wbr>CONTROL<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1350
- <aside class="tsd-sources">
1351
- <ul>
1352
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L171">tsc/usb/bindings.ts:171</a></li>
1353
- </ul>
1354
- </aside>
1355
- <div class="tsd-comment tsd-typography">
1356
- <div class="lead">
1357
- <p>Control endpoint</p>
1358
- </div>
1359
- </div>
1360
- </section>
1361
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1362
- <a name="libusb_transfer_type_interrupt" class="tsd-anchor"></a>
1363
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>TRANSFER_<wbr>TYPE_<wbr>INTERRUPT</h3>
1364
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>TYPE_<wbr>INTERRUPT<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1365
- <aside class="tsd-sources">
1366
- <ul>
1367
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L177">tsc/usb/bindings.ts:177</a></li>
1368
- </ul>
1369
- </aside>
1370
- <div class="tsd-comment tsd-typography">
1371
- <div class="lead">
1372
- <p>Interrupt endpoint</p>
1373
- </div>
1374
- </div>
1375
- </section>
1376
- <section class="tsd-panel tsd-member tsd-kind-variable tsd-parent-kind-module">
1377
- <a name="libusb_transfer_type_isochronous" class="tsd-anchor"></a>
1378
- <h3><span class="tsd-flag ts-flagConst">Const</span> LIBUSB_<wbr>TRANSFER_<wbr>TYPE_<wbr>ISOCHRONOUS</h3>
1379
- <div class="tsd-signature tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>TYPE_<wbr>ISOCHRONOUS<span class="tsd-signature-symbol">:</span> <span class="tsd-signature-type">number</span></div>
1380
- <aside class="tsd-sources">
1381
- <ul>
1382
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L173">tsc/usb/bindings.ts:173</a></li>
1383
- </ul>
1384
- </aside>
1385
- <div class="tsd-comment tsd-typography">
1386
- <div class="lead">
1387
- <p>Isochronous endpoint</p>
1388
- </div>
1389
- </div>
1390
- </section>
1391
- </section>
1392
- <section class="tsd-panel-group tsd-member-group ">
1393
- <h2>Functions</h2>
1394
- <section class="tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module">
1395
- <a name="_disablehotplugevents" class="tsd-anchor"></a>
1396
- <h3>_disable<wbr>Hotplug<wbr>Events</h3>
1397
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-module">
1398
- <li class="tsd-signature tsd-kind-icon">_disable<wbr>Hotplug<wbr>Events<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
1399
- </ul>
1400
- <ul class="tsd-descriptions">
1401
- <li class="tsd-description">
1402
- <aside class="tsd-sources">
1403
- <ul>
1404
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L29">tsc/usb/bindings.ts:29</a></li>
1405
- </ul>
1406
- </aside>
1407
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
1408
- </li>
1409
- </ul>
1410
- </section>
1411
- <section class="tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module">
1412
- <a name="_enablehotplugevents" class="tsd-anchor"></a>
1413
- <h3>_enable<wbr>Hotplug<wbr>Events</h3>
1414
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-module">
1415
- <li class="tsd-signature tsd-kind-icon">_enable<wbr>Hotplug<wbr>Events<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
1416
- </ul>
1417
- <ul class="tsd-descriptions">
1418
- <li class="tsd-description">
1419
- <aside class="tsd-sources">
1420
- <ul>
1421
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L28">tsc/usb/bindings.ts:28</a></li>
1422
- </ul>
1423
- </aside>
1424
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
1425
- </li>
1426
- </ul>
1427
- </section>
1428
- <section class="tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1429
- <a name="addlistener" class="tsd-anchor"></a>
1430
- <h3>add<wbr>Listener</h3>
1431
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1432
- <li class="tsd-signature tsd-kind-icon">add<wbr>Listener&lt;K&gt;<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">K</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
1433
- </ul>
1434
- <ul class="tsd-descriptions">
1435
- <li class="tsd-description">
1436
- <aside class="tsd-sources">
1437
- <ul>
1438
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/index.ts#L31">tsc/usb/index.ts:31</a></li>
1439
- </ul>
1440
- </aside>
1441
- <h4 class="tsd-type-parameters-title">Type parameters</h4>
1442
- <ul class="tsd-type-parameters">
1443
- <li>
1444
- <h4>K<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">keyof </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a></h4>
1445
- </li>
1446
- </ul>
1447
- <h4 class="tsd-parameters-title">Parameters</h4>
1448
- <ul class="tsd-parameters">
1449
- <li>
1450
- <h5>event: <span class="tsd-signature-type">K</span></h5>
1451
- </li>
1452
- <li>
1453
- <h5>listener: <span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></h5>
1454
- <ul class="tsd-parameters">
1455
- <li class="tsd-parameter-signature">
1456
- <ul class="tsd-signatures tsd-kind-type-literal">
1457
- <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
1458
- </ul>
1459
- <ul class="tsd-descriptions">
1460
- <li class="tsd-description">
1461
- <h4 class="tsd-parameters-title">Parameters</h4>
1462
- <ul class="tsd-parameters">
1463
- <li>
1464
- <h5>arg: <a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span></h5>
1465
- </li>
1466
- </ul>
1467
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
1468
- </li>
1469
- </ul>
1470
- </li>
1471
- </ul>
1472
- </li>
1473
- </ul>
1474
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
1475
- </li>
1476
- </ul>
1477
- </section>
1478
- <section class="tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1479
- <a name="emit" class="tsd-anchor"></a>
1480
- <h3>emit</h3>
1481
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1482
- <li class="tsd-signature tsd-kind-icon">emit&lt;K&gt;<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">K</span>, arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
1483
- </ul>
1484
- <ul class="tsd-descriptions">
1485
- <li class="tsd-description">
1486
- <aside class="tsd-sources">
1487
- <ul>
1488
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/index.ts#L39">tsc/usb/index.ts:39</a></li>
1489
- </ul>
1490
- </aside>
1491
- <h4 class="tsd-type-parameters-title">Type parameters</h4>
1492
- <ul class="tsd-type-parameters">
1493
- <li>
1494
- <h4>K<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">keyof </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a></h4>
1495
- </li>
1496
- </ul>
1497
- <h4 class="tsd-parameters-title">Parameters</h4>
1498
- <ul class="tsd-parameters">
1499
- <li>
1500
- <h5>event: <span class="tsd-signature-type">K</span></h5>
1501
- </li>
1502
- <li>
1503
- <h5>arg: <a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span></h5>
1504
- </li>
1505
- </ul>
1506
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
1507
- </li>
1508
- </ul>
1509
- </section>
1510
- <section class="tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module">
1511
- <a name="getdevicelist" class="tsd-anchor"></a>
1512
- <h3>get<wbr>Device<wbr>List</h3>
1513
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-module">
1514
- <li class="tsd-signature tsd-kind-icon">get<wbr>Device<wbr>List<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../classes/usb_bindings.device.html" class="tsd-signature-type" data-tsd-kind="Class">Device</a><span class="tsd-signature-symbol">[]</span></li>
1515
- </ul>
1516
- <ul class="tsd-descriptions">
1517
- <li class="tsd-description">
1518
- <aside class="tsd-sources">
1519
- <ul>
1520
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L14">tsc/usb/bindings.ts:14</a></li>
1521
- </ul>
1522
- </aside>
1523
- <div class="tsd-comment tsd-typography">
1524
- <div class="lead">
1525
- <p>Return a list of <code>Device</code> objects for the USB devices attached to the system.</p>
1526
- </div>
1527
- </div>
1528
- <h4 class="tsd-returns-title">Returns <a href="../classes/usb_bindings.device.html" class="tsd-signature-type" data-tsd-kind="Class">Device</a><span class="tsd-signature-symbol">[]</span></h4>
1529
- </li>
1530
- </ul>
1531
- </section>
1532
- <section class="tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1533
- <a name="listenercount" class="tsd-anchor"></a>
1534
- <h3>listener<wbr>Count</h3>
1535
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1536
- <li class="tsd-signature tsd-kind-icon">listener<wbr>Count&lt;K&gt;<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
1537
- </ul>
1538
- <ul class="tsd-descriptions">
1539
- <li class="tsd-description">
1540
- <aside class="tsd-sources">
1541
- <ul>
1542
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/index.ts#L40">tsc/usb/index.ts:40</a></li>
1543
- </ul>
1544
- </aside>
1545
- <h4 class="tsd-type-parameters-title">Type parameters</h4>
1546
- <ul class="tsd-type-parameters">
1547
- <li>
1548
- <h4>K<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">keyof </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a></h4>
1549
- </li>
1550
- </ul>
1551
- <h4 class="tsd-parameters-title">Parameters</h4>
1552
- <ul class="tsd-parameters">
1553
- <li>
1554
- <h5>event: <span class="tsd-signature-type">K</span></h5>
1555
- </li>
1556
- </ul>
1557
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
1558
- </li>
1559
- </ul>
1560
- </section>
1561
- <section class="tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1562
- <a name="listeners" class="tsd-anchor"></a>
1563
- <h3>listeners</h3>
1564
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1565
- <li class="tsd-signature tsd-kind-icon">listeners&lt;K&gt;<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></li>
1566
- </ul>
1567
- <ul class="tsd-descriptions">
1568
- <li class="tsd-description">
1569
- <aside class="tsd-sources">
1570
- <ul>
1571
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/index.ts#L36">tsc/usb/index.ts:36</a></li>
1572
- </ul>
1573
- </aside>
1574
- <h4 class="tsd-type-parameters-title">Type parameters</h4>
1575
- <ul class="tsd-type-parameters">
1576
- <li>
1577
- <h4>K<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">keyof </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a></h4>
1578
- </li>
1579
- </ul>
1580
- <h4 class="tsd-parameters-title">Parameters</h4>
1581
- <ul class="tsd-parameters">
1582
- <li>
1583
- <h5>event: <span class="tsd-signature-type">K</span></h5>
1584
- </li>
1585
- </ul>
1586
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></h4>
1587
- </li>
1588
- </ul>
1589
- </section>
1590
- <section class="tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1591
- <a name="off" class="tsd-anchor"></a>
1592
- <h3>off</h3>
1593
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1594
- <li class="tsd-signature tsd-kind-icon">off&lt;K&gt;<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">K</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
1595
- </ul>
1596
- <ul class="tsd-descriptions">
1597
- <li class="tsd-description">
1598
- <aside class="tsd-sources">
1599
- <ul>
1600
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/index.ts#L34">tsc/usb/index.ts:34</a></li>
1601
- </ul>
1602
- </aside>
1603
- <h4 class="tsd-type-parameters-title">Type parameters</h4>
1604
- <ul class="tsd-type-parameters">
1605
- <li>
1606
- <h4>K<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">keyof </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a></h4>
1607
- </li>
1608
- </ul>
1609
- <h4 class="tsd-parameters-title">Parameters</h4>
1610
- <ul class="tsd-parameters">
1611
- <li>
1612
- <h5>event: <span class="tsd-signature-type">K</span></h5>
1613
- </li>
1614
- <li>
1615
- <h5>listener: <span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></h5>
1616
- <ul class="tsd-parameters">
1617
- <li class="tsd-parameter-signature">
1618
- <ul class="tsd-signatures tsd-kind-type-literal">
1619
- <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
1620
- </ul>
1621
- <ul class="tsd-descriptions">
1622
- <li class="tsd-description">
1623
- <h4 class="tsd-parameters-title">Parameters</h4>
1624
- <ul class="tsd-parameters">
1625
- <li>
1626
- <h5>arg: <a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span></h5>
1627
- </li>
1628
- </ul>
1629
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
1630
- </li>
1631
- </ul>
1632
- </li>
1633
- </ul>
1634
- </li>
1635
- </ul>
1636
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
1637
- </li>
1638
- </ul>
1639
- </section>
1640
- <section class="tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1641
- <a name="on" class="tsd-anchor"></a>
1642
- <h3>on</h3>
1643
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1644
- <li class="tsd-signature tsd-kind-icon">on&lt;K&gt;<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">K</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
1645
- </ul>
1646
- <ul class="tsd-descriptions">
1647
- <li class="tsd-description">
1648
- <aside class="tsd-sources">
1649
- <ul>
1650
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/index.ts#L33">tsc/usb/index.ts:33</a></li>
1651
- </ul>
1652
- </aside>
1653
- <h4 class="tsd-type-parameters-title">Type parameters</h4>
1654
- <ul class="tsd-type-parameters">
1655
- <li>
1656
- <h4>K<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">keyof </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a></h4>
1657
- </li>
1658
- </ul>
1659
- <h4 class="tsd-parameters-title">Parameters</h4>
1660
- <ul class="tsd-parameters">
1661
- <li>
1662
- <h5>event: <span class="tsd-signature-type">K</span></h5>
1663
- </li>
1664
- <li>
1665
- <h5>listener: <span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></h5>
1666
- <ul class="tsd-parameters">
1667
- <li class="tsd-parameter-signature">
1668
- <ul class="tsd-signatures tsd-kind-type-literal">
1669
- <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
1670
- </ul>
1671
- <ul class="tsd-descriptions">
1672
- <li class="tsd-description">
1673
- <h4 class="tsd-parameters-title">Parameters</h4>
1674
- <ul class="tsd-parameters">
1675
- <li>
1676
- <h5>arg: <a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span></h5>
1677
- </li>
1678
- </ul>
1679
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
1680
- </li>
1681
- </ul>
1682
- </li>
1683
- </ul>
1684
- </li>
1685
- </ul>
1686
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
1687
- </li>
1688
- </ul>
1689
- </section>
1690
- <section class="tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1691
- <a name="once" class="tsd-anchor"></a>
1692
- <h3>once</h3>
1693
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1694
- <li class="tsd-signature tsd-kind-icon">once&lt;K&gt;<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">K</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
1695
- </ul>
1696
- <ul class="tsd-descriptions">
1697
- <li class="tsd-description">
1698
- <aside class="tsd-sources">
1699
- <ul>
1700
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/index.ts#L35">tsc/usb/index.ts:35</a></li>
1701
- </ul>
1702
- </aside>
1703
- <h4 class="tsd-type-parameters-title">Type parameters</h4>
1704
- <ul class="tsd-type-parameters">
1705
- <li>
1706
- <h4>K<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">keyof </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a></h4>
1707
- </li>
1708
- </ul>
1709
- <h4 class="tsd-parameters-title">Parameters</h4>
1710
- <ul class="tsd-parameters">
1711
- <li>
1712
- <h5>event: <span class="tsd-signature-type">K</span></h5>
1713
- </li>
1714
- <li>
1715
- <h5>listener: <span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></h5>
1716
- <ul class="tsd-parameters">
1717
- <li class="tsd-parameter-signature">
1718
- <ul class="tsd-signatures tsd-kind-type-literal">
1719
- <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
1720
- </ul>
1721
- <ul class="tsd-descriptions">
1722
- <li class="tsd-description">
1723
- <h4 class="tsd-parameters-title">Parameters</h4>
1724
- <ul class="tsd-parameters">
1725
- <li>
1726
- <h5>arg: <a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span></h5>
1727
- </li>
1728
- </ul>
1729
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
1730
- </li>
1731
- </ul>
1732
- </li>
1733
- </ul>
1734
- </li>
1735
- </ul>
1736
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
1737
- </li>
1738
- </ul>
1739
- </section>
1740
- <section class="tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1741
- <a name="rawlisteners" class="tsd-anchor"></a>
1742
- <h3>raw<wbr>Listeners</h3>
1743
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1744
- <li class="tsd-signature tsd-kind-icon">raw<wbr>Listeners&lt;K&gt;<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></li>
1745
- </ul>
1746
- <ul class="tsd-descriptions">
1747
- <li class="tsd-description">
1748
- <aside class="tsd-sources">
1749
- <ul>
1750
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/index.ts#L37">tsc/usb/index.ts:37</a></li>
1751
- </ul>
1752
- </aside>
1753
- <h4 class="tsd-type-parameters-title">Type parameters</h4>
1754
- <ul class="tsd-type-parameters">
1755
- <li>
1756
- <h4>K<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">keyof </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a></h4>
1757
- </li>
1758
- </ul>
1759
- <h4 class="tsd-parameters-title">Parameters</h4>
1760
- <ul class="tsd-parameters">
1761
- <li>
1762
- <h5>event: <span class="tsd-signature-type">K</span></h5>
1763
- </li>
1764
- </ul>
1765
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">[]</span></h4>
1766
- </li>
1767
- </ul>
1768
- </section>
1769
- <section class="tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1770
- <a name="removealllisteners" class="tsd-anchor"></a>
1771
- <h3>remove<wbr>All<wbr>Listeners</h3>
1772
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1773
- <li class="tsd-signature tsd-kind-icon">remove<wbr>All<wbr>Listeners&lt;K&gt;<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
1774
- </ul>
1775
- <ul class="tsd-descriptions">
1776
- <li class="tsd-description">
1777
- <aside class="tsd-sources">
1778
- <ul>
1779
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/index.ts#L38">tsc/usb/index.ts:38</a></li>
1780
- </ul>
1781
- </aside>
1782
- <h4 class="tsd-type-parameters-title">Type parameters</h4>
1783
- <ul class="tsd-type-parameters">
1784
- <li>
1785
- <h4>K<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">keyof </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a></h4>
1786
- </li>
1787
- </ul>
1788
- <h4 class="tsd-parameters-title">Parameters</h4>
1789
- <ul class="tsd-parameters">
1790
- <li>
1791
- <h5><span class="tsd-flag ts-flagOptional">Optional</span> event: <span class="tsd-signature-type">K</span></h5>
1792
- </li>
1793
- </ul>
1794
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
1795
- </li>
1796
- </ul>
1797
- </section>
1798
- <section class="tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1799
- <a name="removelistener" class="tsd-anchor"></a>
1800
- <h3>remove<wbr>Listener</h3>
1801
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
1802
- <li class="tsd-signature tsd-kind-icon">remove<wbr>Listener&lt;K&gt;<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">K</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
1803
- </ul>
1804
- <ul class="tsd-descriptions">
1805
- <li class="tsd-description">
1806
- <aside class="tsd-sources">
1807
- <ul>
1808
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/index.ts#L32">tsc/usb/index.ts:32</a></li>
1809
- </ul>
1810
- </aside>
1811
- <h4 class="tsd-type-parameters-title">Type parameters</h4>
1812
- <ul class="tsd-type-parameters">
1813
- <li>
1814
- <h4>K<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">keyof </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a></h4>
1815
- </li>
1816
- </ul>
1817
- <h4 class="tsd-parameters-title">Parameters</h4>
1818
- <ul class="tsd-parameters">
1819
- <li>
1820
- <h5>event: <span class="tsd-signature-type">K</span></h5>
1821
- </li>
1822
- <li>
1823
- <h5>listener: <span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> =&gt; </span><span class="tsd-signature-type">void</span></h5>
1824
- <ul class="tsd-parameters">
1825
- <li class="tsd-parameter-signature">
1826
- <ul class="tsd-signatures tsd-kind-type-literal">
1827
- <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>arg<span class="tsd-signature-symbol">: </span><a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
1828
- </ul>
1829
- <ul class="tsd-descriptions">
1830
- <li class="tsd-description">
1831
- <h4 class="tsd-parameters-title">Parameters</h4>
1832
- <ul class="tsd-parameters">
1833
- <li>
1834
- <h5>arg: <a href="../interfaces/usb.deviceevents.html" class="tsd-signature-type" data-tsd-kind="Interface">DeviceEvents</a><span class="tsd-signature-symbol">[</span><span class="tsd-signature-type">K</span><span class="tsd-signature-symbol">]</span></h5>
1835
- </li>
1836
- </ul>
1837
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
1838
- </li>
1839
- </ul>
1840
- </li>
1841
- </ul>
1842
- </li>
1843
- </ul>
1844
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
1845
- </li>
1846
- </ul>
1847
- </section>
1848
- <section class="tsd-panel tsd-member tsd-kind-function tsd-parent-kind-module">
1849
- <a name="setdebuglevel" class="tsd-anchor"></a>
1850
- <h3>set<wbr>Debug<wbr>Level</h3>
1851
- <ul class="tsd-signatures tsd-kind-function tsd-parent-kind-module">
1852
- <li class="tsd-signature tsd-kind-icon">set<wbr>Debug<wbr>Level<span class="tsd-signature-symbol">(</span>level<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
1853
- </ul>
1854
- <ul class="tsd-descriptions">
1855
- <li class="tsd-description">
1856
- <aside class="tsd-sources">
1857
- <ul>
1858
- <li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/usb/bindings.ts#L26">tsc/usb/bindings.ts:26</a></li>
1859
- </ul>
1860
- </aside>
1861
- <div class="tsd-comment tsd-typography">
1862
- <div class="lead">
1863
- <p>Set the libusb debug level (between 0 and 4)</p>
1864
- </div>
1865
- </div>
1866
- <h4 class="tsd-parameters-title">Parameters</h4>
1867
- <ul class="tsd-parameters">
1868
- <li>
1869
- <h5>level: <span class="tsd-signature-type">number</span></h5>
1870
- <div class="tsd-comment tsd-typography">
1871
- <p>libusb debug level (between 0 and 4)</p>
1872
- </div>
1873
- </li>
1874
- </ul>
1875
- <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
1876
- </li>
1877
- </ul>
1878
- </section>
1879
- </section>
1880
- </div>
1881
- <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
1882
- <nav class="tsd-navigation primary">
1883
- <ul>
1884
- <li class=" ">
1885
- <a href="../modules.html">Exports</a>
1886
- </li>
1887
- <li class=" tsd-kind-module">
1888
- <a href="index.html">index</a>
1889
- </li>
1890
- <li class=" tsd-kind-module">
1891
- <a href="usb.html">usb</a>
1892
- </li>
1893
- <li class="current tsd-kind-module">
1894
- <a href="usb_bindings.html">usb/bindings</a>
1895
- </li>
1896
- <li class=" tsd-kind-module">
1897
- <a href="usb_capability.html">usb/capability</a>
1898
- </li>
1899
- <li class=" tsd-kind-module">
1900
- <a href="usb_descriptors.html">usb/descriptors</a>
1901
- </li>
1902
- <li class=" tsd-kind-module">
1903
- <a href="usb_device.html">usb/device</a>
1904
- </li>
1905
- <li class=" tsd-kind-module">
1906
- <a href="usb_endpoint.html">usb/endpoint</a>
1907
- </li>
1908
- <li class=" tsd-kind-module">
1909
- <a href="usb_interface.html">usb/interface</a>
1910
- </li>
1911
- <li class=" tsd-kind-module">
1912
- <a href="webusb.html">webusb</a>
1913
- </li>
1914
- <li class=" tsd-kind-module">
1915
- <a href="webusb_mutex.html">webusb/mutex</a>
1916
- </li>
1917
- <li class=" tsd-kind-module">
1918
- <a href="webusb_typed_event_target.html">webusb/typed-<wbr>event-<wbr>target</a>
1919
- </li>
1920
- <li class=" tsd-kind-module">
1921
- <a href="webusb_webusb_device.html">webusb/webusb-<wbr>device</a>
1922
- </li>
1923
- </ul>
1924
- </nav>
1925
- <nav class="tsd-navigation secondary menu-sticky">
1926
- <ul class="before-current">
1927
- <li class=" tsd-kind-reference tsd-parent-kind-module">
1928
- <a href="usb_bindings.html#deviceevents" class="tsd-kind-icon">Device<wbr>Events</a>
1929
- </li>
1930
- <li class=" tsd-kind-class tsd-parent-kind-module">
1931
- <a href="../classes/usb_bindings.device.html" class="tsd-kind-icon">Device</a>
1932
- </li>
1933
- <li class=" tsd-kind-class tsd-parent-kind-module">
1934
- <a href="../classes/usb_bindings.libusbexception.html" class="tsd-kind-icon">LibUSBException</a>
1935
- </li>
1936
- <li class=" tsd-kind-class tsd-parent-kind-module">
1937
- <a href="../classes/usb_bindings.transfer.html" class="tsd-kind-icon">Transfer</a>
1938
- </li>
1939
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1940
- <a href="usb_bindings.html#init_error" class="tsd-kind-icon">INIT_<wbr>ERROR</a>
1941
- </li>
1942
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1943
- <a href="usb_bindings.html#libusb_class_application" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>APPLICATION</a>
1944
- </li>
1945
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1946
- <a href="usb_bindings.html#libusb_class_audio" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>AUDIO</a>
1947
- </li>
1948
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1949
- <a href="usb_bindings.html#libusb_class_comm" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>COMM</a>
1950
- </li>
1951
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1952
- <a href="usb_bindings.html#libusb_class_data" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>DATA</a>
1953
- </li>
1954
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1955
- <a href="usb_bindings.html#libusb_class_hid" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>HID</a>
1956
- </li>
1957
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1958
- <a href="usb_bindings.html#libusb_class_hub" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>HUB</a>
1959
- </li>
1960
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1961
- <a href="usb_bindings.html#libusb_class_mass_storage" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>MASS_<wbr>STORAGE</a>
1962
- </li>
1963
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1964
- <a href="usb_bindings.html#libusb_class_per_interface" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>PER_<wbr>INTERFACE</a>
1965
- </li>
1966
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1967
- <a href="usb_bindings.html#libusb_class_printer" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>PRINTER</a>
1968
- </li>
1969
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1970
- <a href="usb_bindings.html#libusb_class_ptp" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>PTP</a>
1971
- </li>
1972
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1973
- <a href="usb_bindings.html#libusb_class_vendor_spec" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>VENDOR_<wbr>SPEC</a>
1974
- </li>
1975
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1976
- <a href="usb_bindings.html#libusb_class_wireless" class="tsd-kind-icon">LIBUSB_<wbr>CLASS_<wbr>WIRELESS</a>
1977
- </li>
1978
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1979
- <a href="usb_bindings.html#libusb_control_setup_size" class="tsd-kind-icon">LIBUSB_<wbr>CONTROL_<wbr>SETUP_<wbr>SIZE</a>
1980
- </li>
1981
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1982
- <a href="usb_bindings.html#libusb_dt_bos" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>BOS</a>
1983
- </li>
1984
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1985
- <a href="usb_bindings.html#libusb_dt_bos_size" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>BOS_<wbr>SIZE</a>
1986
- </li>
1987
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1988
- <a href="usb_bindings.html#libusb_dt_config" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>CONFIG</a>
1989
- </li>
1990
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1991
- <a href="usb_bindings.html#libusb_dt_device" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>DEVICE</a>
1992
- </li>
1993
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1994
- <a href="usb_bindings.html#libusb_dt_endpoint" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>ENDPOINT</a>
1995
- </li>
1996
- <li class=" tsd-kind-variable tsd-parent-kind-module">
1997
- <a href="usb_bindings.html#libusb_dt_hid" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>HID</a>
1998
- </li>
1999
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2000
- <a href="usb_bindings.html#libusb_dt_hub" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>HUB</a>
2001
- </li>
2002
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2003
- <a href="usb_bindings.html#libusb_dt_interface" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>INTERFACE</a>
2004
- </li>
2005
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2006
- <a href="usb_bindings.html#libusb_dt_physical" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>PHYSICAL</a>
2007
- </li>
2008
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2009
- <a href="usb_bindings.html#libusb_dt_report" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>REPORT</a>
2010
- </li>
2011
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2012
- <a href="usb_bindings.html#libusb_dt_string" class="tsd-kind-icon">LIBUSB_<wbr>DT_<wbr>STRING</a>
2013
- </li>
2014
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2015
- <a href="usb_bindings.html#libusb_endpoint_in" class="tsd-kind-icon">LIBUSB_<wbr>ENDPOINT_<wbr>IN</a>
2016
- </li>
2017
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2018
- <a href="usb_bindings.html#libusb_endpoint_out" class="tsd-kind-icon">LIBUSB_<wbr>ENDPOINT_<wbr>OUT</a>
2019
- </li>
2020
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2021
- <a href="usb_bindings.html#libusb_error_access" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>ACCESS</a>
2022
- </li>
2023
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2024
- <a href="usb_bindings.html#libusb_error_busy" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>BUSY</a>
2025
- </li>
2026
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2027
- <a href="usb_bindings.html#libusb_error_interrupted" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>INTERRUPTED</a>
2028
- </li>
2029
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2030
- <a href="usb_bindings.html#libusb_error_invalid_param" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>INVALID_<wbr>PARAM</a>
2031
- </li>
2032
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2033
- <a href="usb_bindings.html#libusb_error_io" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>IO</a>
2034
- </li>
2035
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2036
- <a href="usb_bindings.html#libusb_error_not_found" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>NOT_<wbr>FOUND</a>
2037
- </li>
2038
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2039
- <a href="usb_bindings.html#libusb_error_not_supported" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>NOT_<wbr>SUPPORTED</a>
2040
- </li>
2041
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2042
- <a href="usb_bindings.html#libusb_error_no_device" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>NO_<wbr>DEVICE</a>
2043
- </li>
2044
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2045
- <a href="usb_bindings.html#libusb_error_no_mem" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>NO_<wbr>MEM</a>
2046
- </li>
2047
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2048
- <a href="usb_bindings.html#libusb_error_other" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>OTHER</a>
2049
- </li>
2050
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2051
- <a href="usb_bindings.html#libusb_error_overflow" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>OVERFLOW</a>
2052
- </li>
2053
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2054
- <a href="usb_bindings.html#libusb_error_pipe" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>PIPE</a>
2055
- </li>
2056
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2057
- <a href="usb_bindings.html#libusb_error_timeout" class="tsd-kind-icon">LIBUSB_<wbr>ERROR_<wbr>TIMEOUT</a>
2058
- </li>
2059
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2060
- <a href="usb_bindings.html#libusb_iso_sync_type_adaptive" class="tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>SYNC_<wbr>TYPE_<wbr>ADAPTIVE</a>
2061
- </li>
2062
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2063
- <a href="usb_bindings.html#libusb_iso_sync_type_async" class="tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>SYNC_<wbr>TYPE_<wbr>ASYNC</a>
2064
- </li>
2065
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2066
- <a href="usb_bindings.html#libusb_iso_sync_type_none" class="tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>SYNC_<wbr>TYPE_<wbr>NONE</a>
2067
- </li>
2068
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2069
- <a href="usb_bindings.html#libusb_iso_sync_type_sync" class="tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>SYNC_<wbr>TYPE_<wbr>SYNC</a>
2070
- </li>
2071
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2072
- <a href="usb_bindings.html#libusb_iso_usage_type_data" class="tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>USAGE_<wbr>TYPE_<wbr>DATA</a>
2073
- </li>
2074
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2075
- <a href="usb_bindings.html#libusb_iso_usage_type_feedback" class="tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>USAGE_<wbr>TYPE_<wbr>FEEDBACK</a>
2076
- </li>
2077
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2078
- <a href="usb_bindings.html#libusb_iso_usage_type_implicit" class="tsd-kind-icon">LIBUSB_<wbr>ISO_<wbr>USAGE_<wbr>TYPE_<wbr>IMPLICIT</a>
2079
- </li>
2080
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2081
- <a href="usb_bindings.html#libusb_recipient_device" class="tsd-kind-icon">LIBUSB_<wbr>RECIPIENT_<wbr>DEVICE</a>
2082
- </li>
2083
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2084
- <a href="usb_bindings.html#libusb_recipient_endpoint" class="tsd-kind-icon">LIBUSB_<wbr>RECIPIENT_<wbr>ENDPOINT</a>
2085
- </li>
2086
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2087
- <a href="usb_bindings.html#libusb_recipient_interface" class="tsd-kind-icon">LIBUSB_<wbr>RECIPIENT_<wbr>INTERFACE</a>
2088
- </li>
2089
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2090
- <a href="usb_bindings.html#libusb_recipient_other" class="tsd-kind-icon">LIBUSB_<wbr>RECIPIENT_<wbr>OTHER</a>
2091
- </li>
2092
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2093
- <a href="usb_bindings.html#libusb_request_clear_feature" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>CLEAR_<wbr>FEATURE</a>
2094
- </li>
2095
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2096
- <a href="usb_bindings.html#libusb_request_get_configuration" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>GET_<wbr>CONFIGURATION</a>
2097
- </li>
2098
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2099
- <a href="usb_bindings.html#libusb_request_get_descriptor" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>GET_<wbr>DESCRIPTOR</a>
2100
- </li>
2101
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2102
- <a href="usb_bindings.html#libusb_request_get_interface" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>GET_<wbr>INTERFACE</a>
2103
- </li>
2104
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2105
- <a href="usb_bindings.html#libusb_request_get_status" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>GET_<wbr>STATUS</a>
2106
- </li>
2107
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2108
- <a href="usb_bindings.html#libusb_request_set_address" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>ADDRESS</a>
2109
- </li>
2110
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2111
- <a href="usb_bindings.html#libusb_request_set_configuration" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>CONFIGURATION</a>
2112
- </li>
2113
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2114
- <a href="usb_bindings.html#libusb_request_set_descriptor" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>DESCRIPTOR</a>
2115
- </li>
2116
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2117
- <a href="usb_bindings.html#libusb_request_set_feature" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>FEATURE</a>
2118
- </li>
2119
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2120
- <a href="usb_bindings.html#libusb_request_set_interface" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SET_<wbr>INTERFACE</a>
2121
- </li>
2122
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2123
- <a href="usb_bindings.html#libusb_request_synch_frame" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>SYNCH_<wbr>FRAME</a>
2124
- </li>
2125
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2126
- <a href="usb_bindings.html#libusb_request_type_class" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>TYPE_<wbr>CLASS</a>
2127
- </li>
2128
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2129
- <a href="usb_bindings.html#libusb_request_type_reserved" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>TYPE_<wbr>RESERVED</a>
2130
- </li>
2131
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2132
- <a href="usb_bindings.html#libusb_request_type_standard" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>TYPE_<wbr>STANDARD</a>
2133
- </li>
2134
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2135
- <a href="usb_bindings.html#libusb_request_type_vendor" class="tsd-kind-icon">LIBUSB_<wbr>REQUEST_<wbr>TYPE_<wbr>VENDOR</a>
2136
- </li>
2137
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2138
- <a href="usb_bindings.html#libusb_transfer_cancelled" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>CANCELLED</a>
2139
- </li>
2140
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2141
- <a href="usb_bindings.html#libusb_transfer_completed" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>COMPLETED</a>
2142
- </li>
2143
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2144
- <a href="usb_bindings.html#libusb_transfer_error" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>ERROR</a>
2145
- </li>
2146
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2147
- <a href="usb_bindings.html#libusb_transfer_free_buffer" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>FREE_<wbr>BUFFER</a>
2148
- </li>
2149
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2150
- <a href="usb_bindings.html#libusb_transfer_free_transfer" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>FREE_<wbr>TRANSFER</a>
2151
- </li>
2152
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2153
- <a href="usb_bindings.html#libusb_transfer_no_device" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>NO_<wbr>DEVICE</a>
2154
- </li>
2155
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2156
- <a href="usb_bindings.html#libusb_transfer_overflow" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>OVERFLOW</a>
2157
- </li>
2158
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2159
- <a href="usb_bindings.html#libusb_transfer_short_not_ok" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>SHORT_<wbr>NOT_<wbr>OK</a>
2160
- </li>
2161
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2162
- <a href="usb_bindings.html#libusb_transfer_stall" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>STALL</a>
2163
- </li>
2164
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2165
- <a href="usb_bindings.html#libusb_transfer_timed_out" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>TIMED_<wbr>OUT</a>
2166
- </li>
2167
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2168
- <a href="usb_bindings.html#libusb_transfer_type_bulk" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>TYPE_<wbr>BULK</a>
2169
- </li>
2170
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2171
- <a href="usb_bindings.html#libusb_transfer_type_control" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>TYPE_<wbr>CONTROL</a>
2172
- </li>
2173
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2174
- <a href="usb_bindings.html#libusb_transfer_type_interrupt" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>TYPE_<wbr>INTERRUPT</a>
2175
- </li>
2176
- <li class=" tsd-kind-variable tsd-parent-kind-module">
2177
- <a href="usb_bindings.html#libusb_transfer_type_isochronous" class="tsd-kind-icon">LIBUSB_<wbr>TRANSFER_<wbr>TYPE_<wbr>ISOCHRONOUS</a>
2178
- </li>
2179
- <li class=" tsd-kind-function tsd-parent-kind-module">
2180
- <a href="usb_bindings.html#_disablehotplugevents" class="tsd-kind-icon">_disable<wbr>Hotplug<wbr>Events</a>
2181
- </li>
2182
- <li class=" tsd-kind-function tsd-parent-kind-module">
2183
- <a href="usb_bindings.html#_enablehotplugevents" class="tsd-kind-icon">_enable<wbr>Hotplug<wbr>Events</a>
2184
- </li>
2185
- <li class=" tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
2186
- <a href="usb_bindings.html#addlistener" class="tsd-kind-icon">add<wbr>Listener</a>
2187
- </li>
2188
- <li class=" tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
2189
- <a href="usb_bindings.html#emit" class="tsd-kind-icon">emit</a>
2190
- </li>
2191
- <li class=" tsd-kind-function tsd-parent-kind-module">
2192
- <a href="usb_bindings.html#getdevicelist" class="tsd-kind-icon">get<wbr>Device<wbr>List</a>
2193
- </li>
2194
- <li class=" tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
2195
- <a href="usb_bindings.html#listenercount" class="tsd-kind-icon">listener<wbr>Count</a>
2196
- </li>
2197
- <li class=" tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
2198
- <a href="usb_bindings.html#listeners" class="tsd-kind-icon">listeners</a>
2199
- </li>
2200
- <li class=" tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
2201
- <a href="usb_bindings.html#off" class="tsd-kind-icon">off</a>
2202
- </li>
2203
- <li class=" tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
2204
- <a href="usb_bindings.html#on" class="tsd-kind-icon">on</a>
2205
- </li>
2206
- <li class=" tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
2207
- <a href="usb_bindings.html#once" class="tsd-kind-icon">once</a>
2208
- </li>
2209
- <li class=" tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
2210
- <a href="usb_bindings.html#rawlisteners" class="tsd-kind-icon">raw<wbr>Listeners</a>
2211
- </li>
2212
- <li class=" tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
2213
- <a href="usb_bindings.html#removealllisteners" class="tsd-kind-icon">remove<wbr>All<wbr>Listeners</a>
2214
- </li>
2215
- <li class=" tsd-kind-function tsd-parent-kind-module tsd-has-type-parameter">
2216
- <a href="usb_bindings.html#removelistener" class="tsd-kind-icon">remove<wbr>Listener</a>
2217
- </li>
2218
- <li class=" tsd-kind-function tsd-parent-kind-module">
2219
- <a href="usb_bindings.html#setdebuglevel" class="tsd-kind-icon">set<wbr>Debug<wbr>Level</a>
2220
- </li>
2221
- </ul>
2222
- </nav>
2223
- </div>
2224
- </div>
2225
- </div>
2226
- <footer>
2227
- <div class="container">
2228
- <h2>Legend</h2>
2229
- <div class="tsd-legend-group">
2230
- <ul class="tsd-legend">
2231
- <li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
2232
- <li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
2233
- <li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
2234
- </ul>
2235
- <ul class="tsd-legend">
2236
- <li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
2237
- <li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
2238
- </ul>
2239
- <ul class="tsd-legend">
2240
- <li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
2241
- </ul>
2242
- </div>
2243
- </div>
2244
- </footer>
2245
- <div class="overlay"></div>
2246
- <script src="../assets/js/main.js"></script>
2247
- </body>
2248
- </html>