usb 2.0.0-alpha.1 → 2.0.3

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