usb 2.0.0-alpha.2 → 2.0.1
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.
- package/.gitmodules +1 -1
- package/CHANGELOG.md +81 -0
- package/README.md +570 -0
- package/binding.gyp +2 -2
- package/dist/usb/bindings.d.ts +13 -0
- package/dist/usb/bindings.js +2 -1
- package/dist/usb/bindings.js.map +1 -1
- package/dist/usb/index.js +86 -2
- package/dist/usb/index.js.map +1 -1
- package/dist/usb/interface.js.map +1 -1
- package/dist/webusb/index.d.ts +28 -19
- package/dist/webusb/index.js +152 -66
- package/dist/webusb/index.js.map +1 -1
- package/dist/webusb/webusb-device.d.ts +1 -1
- package/dist/webusb/webusb-device.js +9 -4
- package/dist/webusb/webusb-device.js.map +1 -1
- package/libusb/.private/pre-commit.sh +7 -1
- package/libusb/.travis.yml +49 -0
- package/libusb/AUTHORS +44 -3
- package/libusb/Brewfile +4 -0
- package/libusb/ChangeLog +74 -2
- package/libusb/README.md +32 -0
- package/libusb/TODO +1 -1
- package/libusb/Xcode/common.xcconfig +12 -0
- package/libusb/Xcode/config.h +25 -0
- package/libusb/Xcode/libusb.xcodeproj/project.pbxproj +959 -1
- package/libusb/android/README +4 -2
- package/libusb/android/config.h +75 -0
- package/libusb/appveyor.yml +41 -0
- package/libusb/appveyor_cygwin.bat +11 -0
- package/libusb/appveyor_minGW.bat +19 -0
- package/libusb/autogen.sh +1 -1
- package/libusb/bootstrap.sh +3 -16
- package/libusb/configure.ac +108 -80
- package/libusb/doc/doxygen.cfg.in +1785 -739
- package/libusb/examples/Makefile.am +1 -1
- package/libusb/examples/dpfp.c +3 -1
- package/libusb/examples/dpfp_threaded.c +23 -10
- package/libusb/examples/ezusb.c +3 -3
- package/libusb/examples/ezusb.h +2 -2
- package/libusb/examples/fxload.c +31 -9
- package/libusb/examples/hotplugtest.c +35 -7
- package/libusb/examples/listdevs.c +3 -1
- package/libusb/examples/sam3u_benchmark.c +3 -3
- package/libusb/examples/testlibusb.c +277 -0
- package/libusb/examples/xusb.c +40 -34
- package/libusb/libusb/Makefile.am +49 -23
- package/libusb/libusb/core.c +855 -457
- package/libusb/libusb/descriptor.c +72 -78
- package/libusb/libusb/hotplug.c +122 -76
- package/libusb/libusb/hotplug.h +42 -25
- package/libusb/libusb/io.c +625 -390
- package/libusb/libusb/libusb-1.0.def +12 -0
- package/libusb/libusb/libusb.h +218 -150
- package/libusb/libusb/libusbi.h +346 -176
- package/libusb/libusb/os/darwin_usb.c +604 -319
- package/libusb/libusb/os/darwin_usb.h +61 -20
- package/libusb/libusb/os/haiku_pollfs.cpp +367 -0
- package/libusb/libusb/os/haiku_usb.h +113 -0
- package/libusb/libusb/os/haiku_usb_backend.cpp +533 -0
- package/libusb/libusb/os/haiku_usb_raw.cpp +267 -0
- package/libusb/libusb/os/haiku_usb_raw.h +188 -0
- package/libusb/libusb/os/linux_netlink.c +186 -146
- package/libusb/libusb/os/linux_udev.c +36 -14
- package/libusb/libusb/os/linux_usbfs.c +426 -225
- package/libusb/libusb/os/linux_usbfs.h +5 -3
- package/libusb/libusb/os/netbsd_usb.c +21 -77
- package/libusb/libusb/os/openbsd_usb.c +32 -115
- package/libusb/libusb/os/poll_posix.c +38 -5
- package/libusb/libusb/os/poll_posix.h +3 -0
- package/libusb/libusb/os/poll_windows.c +277 -626
- package/libusb/libusb/os/poll_windows.h +11 -44
- package/libusb/libusb/os/sunos_usb.c +1695 -0
- package/libusb/libusb/os/sunos_usb.h +80 -0
- package/libusb/libusb/os/threads_posix.c +24 -26
- package/libusb/libusb/os/threads_posix.h +73 -21
- package/libusb/libusb/os/threads_windows.c +71 -157
- package/libusb/libusb/os/threads_windows.h +68 -44
- package/libusb/libusb/os/wince_usb.c +276 -420
- package/libusb/libusb/os/wince_usb.h +23 -28
- package/libusb/libusb/os/windows_common.h +78 -58
- package/libusb/libusb/os/windows_nt_common.c +1010 -0
- package/libusb/libusb/os/windows_nt_common.h +110 -0
- package/libusb/libusb/os/windows_nt_shared_types.h +147 -0
- package/libusb/libusb/os/windows_usbdk.c +830 -0
- package/libusb/libusb/os/windows_usbdk.h +103 -0
- package/libusb/libusb/os/windows_winusb.c +4391 -0
- package/libusb/libusb/os/windows_winusb.h +783 -0
- package/libusb/libusb/strerror.c +41 -7
- package/libusb/libusb/sync.c +41 -13
- package/libusb/libusb/version.h +1 -1
- package/libusb/libusb/version_nano.h +1 -1
- package/libusb/libusb-1.0.pc.in +1 -1
- package/libusb/msvc/appveyor.bat +27 -0
- package/libusb/msvc/config.h +5 -4
- package/libusb/msvc/ddk_build.cmd +87 -43
- package/libusb/msvc/fxload_2010.vcxproj +24 -104
- package/libusb/msvc/fxload_2012.vcxproj +24 -107
- package/libusb/msvc/fxload_2013.vcxproj +24 -107
- package/libusb/msvc/fxload_2015.vcxproj +91 -0
- package/libusb/msvc/fxload_2017.vcxproj +114 -0
- package/libusb/msvc/fxload_sources +1 -1
- package/libusb/msvc/getopt_2010.vcxproj +16 -75
- package/libusb/msvc/getopt_2012.vcxproj +16 -79
- package/libusb/msvc/getopt_2013.vcxproj +16 -79
- package/libusb/msvc/getopt_2015.vcxproj +73 -0
- package/libusb/msvc/getopt_2017.vcxproj +98 -0
- package/libusb/msvc/getopt_sources +6 -2
- package/libusb/msvc/hotplugtest_2010.vcxproj +18 -99
- package/libusb/msvc/hotplugtest_2012.vcxproj +18 -102
- package/libusb/msvc/hotplugtest_2013.vcxproj +18 -102
- package/libusb/msvc/hotplugtest_2015.vcxproj +83 -0
- package/libusb/msvc/hotplugtest_2017.vcxproj +106 -0
- package/libusb/msvc/hotplugtest_sources +1 -1
- package/libusb/msvc/libusb_2005.sln +20 -20
- package/libusb/msvc/libusb_2010.sln +57 -46
- package/libusb/msvc/libusb_2012.sln +57 -46
- package/libusb/msvc/libusb_2013.sln +57 -50
- package/libusb/msvc/libusb_2015.sln +59 -52
- package/libusb/msvc/libusb_2017.sln +186 -0
- package/libusb/msvc/libusb_dll.dsp +2 -2
- package/libusb/msvc/libusb_dll_2005.vcproj +30 -2
- package/libusb/msvc/libusb_dll_2010.vcxproj +26 -90
- package/libusb/msvc/libusb_dll_2012.vcxproj +28 -96
- package/libusb/msvc/libusb_dll_2013.vcxproj +28 -96
- package/libusb/msvc/libusb_dll_2015.vcxproj +107 -0
- package/libusb/msvc/libusb_dll_2017.vcxproj +134 -0
- package/libusb/msvc/libusb_dll_wince.vcproj +9 -1
- package/libusb/msvc/libusb_sources +10 -5
- package/libusb/msvc/libusb_static.dsp +2 -2
- package/libusb/msvc/libusb_static_2005.vcproj +32 -4
- package/libusb/msvc/libusb_static_2010.vcxproj +24 -83
- package/libusb/msvc/libusb_static_2012.vcxproj +25 -87
- package/libusb/msvc/libusb_static_2013.vcxproj +25 -87
- package/libusb/msvc/libusb_static_2015.vcxproj +98 -0
- package/libusb/msvc/libusb_static_2017.vcxproj +117 -0
- package/libusb/msvc/libusb_static_wince.vcproj +20 -26
- package/libusb/msvc/libusb_wince.sln +88 -88
- package/libusb/msvc/listdevs_2010.vcxproj +16 -99
- package/libusb/msvc/listdevs_2012.vcxproj +16 -102
- package/libusb/msvc/listdevs_2013.vcxproj +16 -102
- package/libusb/msvc/listdevs_2015.vcxproj +83 -0
- package/libusb/msvc/listdevs_2017.vcxproj +106 -0
- package/libusb/msvc/listdevs_sources +2 -1
- package/libusb/msvc/stress_2010.vcxproj +20 -101
- package/libusb/msvc/stress_2012.vcxproj +20 -104
- package/libusb/msvc/stress_2013.vcxproj +20 -104
- package/libusb/msvc/stress_2015.vcxproj +87 -0
- package/libusb/msvc/stress_2017.vcxproj +110 -0
- package/libusb/msvc/stress_sources +21 -0
- package/libusb/msvc/testlibusb_2010.vcxproj +82 -0
- package/libusb/msvc/testlibusb_2012.vcxproj +83 -0
- package/libusb/msvc/testlibusb_2013.vcxproj +83 -0
- package/libusb/msvc/testlibusb_2015.vcxproj +83 -0
- package/libusb/msvc/testlibusb_2017.vcxproj +106 -0
- package/libusb/msvc/testlibusb_sources +20 -0
- package/libusb/msvc/xusb_2010.vcxproj +17 -98
- package/libusb/msvc/xusb_2012.vcxproj +17 -101
- package/libusb/msvc/xusb_2013.vcxproj +17 -101
- package/libusb/msvc/xusb_2015.vcxproj +83 -0
- package/libusb/msvc/xusb_2017.vcxproj +106 -0
- package/libusb/msvc/xusb_sources +1 -1
- package/libusb/tests/stress.c +2 -2
- package/libusb/tests/testlib.c +0 -4
- package/libusb/travis-autogen.sh +39 -0
- package/libusb.gypi +13 -2
- package/package.json +23 -13
- package/prebuilds/android-arm/node.napi.armv7.node +0 -0
- package/prebuilds/android-arm64/node.napi.armv8.node +0 -0
- package/prebuilds/darwin-x64+arm64/node.napi.node +0 -0
- package/prebuilds/linux-arm/node.napi.armv6.node +0 -0
- package/prebuilds/linux-arm/node.napi.armv7.node +0 -0
- package/prebuilds/linux-arm64/node.napi.armv8.node +0 -0
- package/prebuilds/linux-ia32/node.napi.node +0 -0
- package/prebuilds/linux-x64/node.napi.glibc.node +0 -0
- package/prebuilds/linux-x64/node.napi.musl.node +0 -0
- package/prebuilds/win32-ia32/node.napi.node +0 -0
- package/prebuilds/win32-x64/node.napi.node +0 -0
- package/src/device.cc +7 -7
- package/src/node_usb.cc +43 -1
- package/src/uv_async_queue.h +33 -25
- package/test/usb.coffee +6 -0
- package/tsc/index.ts +1 -1
- package/tsc/usb/bindings.ts +19 -1
- package/tsc/usb/index.ts +67 -19
- package/tsc/usb/interface.ts +2 -2
- package/tsc/webusb/index.ts +187 -75
- package/tsc/webusb/webusb-device.ts +19 -15
- package/.github/workflows/prebuild.yml +0 -48
- package/Readme.md +0 -339
- package/dist/webusb/typed-event-target.d.ts +0 -11
- package/dist/webusb/typed-event-target.js +0 -21
- package/dist/webusb/typed-event-target.js.map +0 -1
- package/docs/assets/css/main.css +0 -2660
- package/docs/assets/images/icons.png +0 -0
- package/docs/assets/images/icons@2x.png +0 -0
- package/docs/assets/images/widgets.png +0 -0
- package/docs/assets/images/widgets@2x.png +0 -0
- package/docs/assets/js/main.js +0 -248
- package/docs/assets/js/search.js +0 -1
- package/docs/classes/usb_bindings.device.html +0 -1338
- package/docs/classes/usb_bindings.libusbexception.html +0 -234
- package/docs/classes/usb_bindings.transfer.html +0 -344
- package/docs/classes/usb_capability.capability.html +0 -297
- package/docs/classes/usb_device.extendeddevice.html +0 -766
- package/docs/classes/usb_endpoint.endpoint.html +0 -472
- package/docs/classes/usb_endpoint.inendpoint.html +0 -766
- package/docs/classes/usb_endpoint.outendpoint.html +0 -582
- package/docs/classes/usb_interface.interface.html +0 -648
- package/docs/classes/webusb.webusb-1.html +0 -615
- package/docs/classes/webusb_mutex.mutex.html +0 -270
- package/docs/classes/webusb_typed_event_target.typedeventtarget.html +0 -443
- package/docs/classes/webusb_webusb_device.webusbdevice.html +0 -904
- package/docs/index.html +0 -500
- package/docs/interfaces/usb.deviceevents.html +0 -242
- package/docs/interfaces/usb_descriptors.bosdescriptor.html +0 -293
- package/docs/interfaces/usb_descriptors.capabilitydescriptor.html +0 -274
- package/docs/interfaces/usb_descriptors.configdescriptor.html +0 -388
- package/docs/interfaces/usb_descriptors.devicedescriptor.html +0 -464
- package/docs/interfaces/usb_descriptors.endpointdescriptor.html +0 -370
- package/docs/interfaces/usb_descriptors.interfacedescriptor.html +0 -407
- package/docs/interfaces/webusb.usboptions.html +0 -226
- package/docs/modules/index.html +0 -304
- package/docs/modules/usb.html +0 -173
- package/docs/modules/usb_bindings.html +0 -2248
- package/docs/modules/usb_capability.html +0 -156
- package/docs/modules/usb_descriptors.html +0 -176
- package/docs/modules/usb_device.html +0 -156
- package/docs/modules/usb_endpoint.html +0 -164
- package/docs/modules/usb_interface.html +0 -156
- package/docs/modules/webusb.html +0 -165
- package/docs/modules/webusb_mutex.html +0 -156
- package/docs/modules/webusb_typed_event_target.html +0 -156
- package/docs/modules/webusb_webusb_device.html +0 -156
- package/docs/modules.html +0 -156
- package/libusb/INSTALL +0 -234
- package/libusb/README +0 -28
- package/libusb/libusb/os/windows_usb.c +0 -5347
- package/libusb/libusb/os/windows_usb.h +0 -971
- package/libusb/msvc/fxload_2010.vcxproj.filters +0 -25
- package/libusb/msvc/fxload_2012.vcxproj.filters +0 -25
- package/libusb/msvc/getopt_2010.vcxproj.filters +0 -26
- package/libusb/msvc/getopt_2012.vcxproj.filters +0 -26
- package/libusb/msvc/hotplugtest_2010.vcxproj.filters +0 -14
- package/libusb/msvc/hotplugtest_2012.vcxproj.filters +0 -14
- package/libusb/msvc/libusb_dll_2010.vcxproj.filters +0 -81
- package/libusb/msvc/libusb_dll_2012.vcxproj.filters +0 -84
- package/libusb/msvc/libusb_static_2010.vcxproj.filters +0 -74
- package/libusb/msvc/libusb_static_2012.vcxproj.filters +0 -74
- package/libusb/msvc/listdevs_2010.vcxproj.filters +0 -14
- package/libusb/msvc/listdevs_2012.vcxproj.filters +0 -14
- package/libusb/msvc/stress_2010.vcxproj.filters +0 -25
- package/libusb/msvc/stress_2012.vcxproj.filters +0 -25
- package/libusb/msvc/xusb_2010.vcxproj.filters +0 -14
- package/libusb/msvc/xusb_2012.vcxproj.filters +0 -14
- package/tsc/webusb/typed-event-target.ts +0 -23
|
@@ -1,443 +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>TypedEventTarget | 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="../modules/webusb_typed_event_target.html">webusb/typed-event-target</a>
|
|
57
|
-
</li>
|
|
58
|
-
<li>
|
|
59
|
-
<a href="webusb_typed_event_target.typedeventtarget.html">TypedEventTarget</a>
|
|
60
|
-
</li>
|
|
61
|
-
</ul>
|
|
62
|
-
<h1>Class TypedEventTarget<T></h1>
|
|
63
|
-
</div>
|
|
64
|
-
</div>
|
|
65
|
-
</header>
|
|
66
|
-
<div class="container container-main">
|
|
67
|
-
<div class="row">
|
|
68
|
-
<div class="col-8 col-content">
|
|
69
|
-
<section class="tsd-panel tsd-type-parameters">
|
|
70
|
-
<h3>Type parameters</h3>
|
|
71
|
-
<ul class="tsd-type-parameters">
|
|
72
|
-
<li>
|
|
73
|
-
<h4>T<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">{}</span></h4>
|
|
74
|
-
</li>
|
|
75
|
-
</ul>
|
|
76
|
-
</section>
|
|
77
|
-
<section class="tsd-panel tsd-hierarchy">
|
|
78
|
-
<h3>Hierarchy</h3>
|
|
79
|
-
<ul class="tsd-hierarchy">
|
|
80
|
-
<li>
|
|
81
|
-
<span class="target">TypedEventTarget</span>
|
|
82
|
-
<ul class="tsd-hierarchy">
|
|
83
|
-
<li>
|
|
84
|
-
<a href="webusb.webusb-1.html" class="tsd-signature-type" data-tsd-kind="Class">WebUSB</a>
|
|
85
|
-
</li>
|
|
86
|
-
</ul>
|
|
87
|
-
</li>
|
|
88
|
-
</ul>
|
|
89
|
-
</section>
|
|
90
|
-
<section class="tsd-panel">
|
|
91
|
-
<h3>Implements</h3>
|
|
92
|
-
<ul class="tsd-hierarchy">
|
|
93
|
-
<li><span class="tsd-signature-type">EventTarget</span></li>
|
|
94
|
-
</ul>
|
|
95
|
-
</section>
|
|
96
|
-
<section class="tsd-panel-group tsd-index-group">
|
|
97
|
-
<h2>Index</h2>
|
|
98
|
-
<section class="tsd-panel tsd-index-panel">
|
|
99
|
-
<div class="tsd-index-content">
|
|
100
|
-
<section class="tsd-index-section ">
|
|
101
|
-
<h3>Constructors</h3>
|
|
102
|
-
<ul class="tsd-index-list">
|
|
103
|
-
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter"><a href="webusb_typed_event_target.typedeventtarget.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
|
104
|
-
</ul>
|
|
105
|
-
</section>
|
|
106
|
-
<section class="tsd-index-section ">
|
|
107
|
-
<h3>Methods</h3>
|
|
108
|
-
<ul class="tsd-index-list">
|
|
109
|
-
<li class="tsd-kind-method tsd-parent-kind-class"><a href="webusb_typed_event_target.typedeventtarget.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a></li>
|
|
110
|
-
<li class="tsd-kind-method tsd-parent-kind-class"><a href="webusb_typed_event_target.typedeventtarget.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a></li>
|
|
111
|
-
<li class="tsd-kind-method tsd-parent-kind-class"><a href="webusb_typed_event_target.typedeventtarget.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a></li>
|
|
112
|
-
</ul>
|
|
113
|
-
</section>
|
|
114
|
-
</div>
|
|
115
|
-
</section>
|
|
116
|
-
</section>
|
|
117
|
-
<section class="tsd-panel-group tsd-member-group ">
|
|
118
|
-
<h2>Constructors</h2>
|
|
119
|
-
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter">
|
|
120
|
-
<a name="constructor" class="tsd-anchor"></a>
|
|
121
|
-
<h3>constructor</h3>
|
|
122
|
-
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter">
|
|
123
|
-
<li class="tsd-signature tsd-kind-icon">new <wbr>Typed<wbr>Event<wbr>Target<T><span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="webusb_typed_event_target.typedeventtarget.html" class="tsd-signature-type" data-tsd-kind="Class">TypedEventTarget</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">></span></li>
|
|
124
|
-
</ul>
|
|
125
|
-
<ul class="tsd-descriptions">
|
|
126
|
-
<li class="tsd-description">
|
|
127
|
-
<aside class="tsd-sources">
|
|
128
|
-
</aside>
|
|
129
|
-
<h4 class="tsd-type-parameters-title">Type parameters</h4>
|
|
130
|
-
<ul class="tsd-type-parameters">
|
|
131
|
-
<li>
|
|
132
|
-
<h4>T<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">{}</span></h4>
|
|
133
|
-
</li>
|
|
134
|
-
</ul>
|
|
135
|
-
<h4 class="tsd-returns-title">Returns <a href="webusb_typed_event_target.typedeventtarget.html" class="tsd-signature-type" data-tsd-kind="Class">TypedEventTarget</a><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">></span></h4>
|
|
136
|
-
</li>
|
|
137
|
-
</ul>
|
|
138
|
-
</section>
|
|
139
|
-
</section>
|
|
140
|
-
<section class="tsd-panel-group tsd-member-group ">
|
|
141
|
-
<h2>Methods</h2>
|
|
142
|
-
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
|
|
143
|
-
<a name="addeventlistener" class="tsd-anchor"></a>
|
|
144
|
-
<h3>add<wbr>Event<wbr>Listener</h3>
|
|
145
|
-
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
|
146
|
-
<li class="tsd-signature tsd-kind-icon">add<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">keyof </span><span class="tsd-signature-type">T</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-symbol">keyof </span><span class="tsd-signature-type">T</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><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
147
|
-
<li class="tsd-signature tsd-kind-icon">add<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> => </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>
|
|
148
|
-
</ul>
|
|
149
|
-
<ul class="tsd-descriptions">
|
|
150
|
-
<li class="tsd-description">
|
|
151
|
-
<aside class="tsd-sources">
|
|
152
|
-
<p>Implementation of EventTarget.addEventListener</p>
|
|
153
|
-
<ul>
|
|
154
|
-
<li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/webusb/typed-event-target.ts#L6">tsc/webusb/typed-event-target.ts:6</a></li>
|
|
155
|
-
</ul>
|
|
156
|
-
</aside>
|
|
157
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
158
|
-
<ul class="tsd-parameters">
|
|
159
|
-
<li>
|
|
160
|
-
<h5>type: <span class="tsd-signature-symbol">keyof </span><span class="tsd-signature-type">T</span></h5>
|
|
161
|
-
</li>
|
|
162
|
-
<li>
|
|
163
|
-
<h5>listener: <span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-symbol">keyof </span><span class="tsd-signature-type">T</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></h5>
|
|
164
|
-
<ul class="tsd-parameters">
|
|
165
|
-
<li class="tsd-parameter-signature">
|
|
166
|
-
<ul class="tsd-signatures tsd-kind-type-literal">
|
|
167
|
-
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-symbol">keyof </span><span class="tsd-signature-type">T</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>
|
|
168
|
-
</ul>
|
|
169
|
-
<ul class="tsd-descriptions">
|
|
170
|
-
<li class="tsd-description">
|
|
171
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
172
|
-
<ul class="tsd-parameters">
|
|
173
|
-
<li>
|
|
174
|
-
<h5>event: <span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-symbol">keyof </span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">]</span></h5>
|
|
175
|
-
</li>
|
|
176
|
-
</ul>
|
|
177
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
178
|
-
</li>
|
|
179
|
-
</ul>
|
|
180
|
-
</li>
|
|
181
|
-
</ul>
|
|
182
|
-
</li>
|
|
183
|
-
</ul>
|
|
184
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
185
|
-
</li>
|
|
186
|
-
<li class="tsd-description">
|
|
187
|
-
<aside class="tsd-sources">
|
|
188
|
-
<p>Implementation of EventTarget.addEventListener</p>
|
|
189
|
-
<ul>
|
|
190
|
-
<li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/webusb/typed-event-target.ts#L7">tsc/webusb/typed-event-target.ts:7</a></li>
|
|
191
|
-
</ul>
|
|
192
|
-
</aside>
|
|
193
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
194
|
-
<ul class="tsd-parameters">
|
|
195
|
-
<li>
|
|
196
|
-
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
|
197
|
-
</li>
|
|
198
|
-
<li>
|
|
199
|
-
<h5>listener: <span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> => </span><span class="tsd-signature-type">void</span></h5>
|
|
200
|
-
<ul class="tsd-parameters">
|
|
201
|
-
<li class="tsd-parameter-signature">
|
|
202
|
-
<ul class="tsd-signatures tsd-kind-type-literal">
|
|
203
|
-
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
204
|
-
</ul>
|
|
205
|
-
<ul class="tsd-descriptions">
|
|
206
|
-
<li class="tsd-description">
|
|
207
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
208
|
-
<ul class="tsd-parameters">
|
|
209
|
-
<li>
|
|
210
|
-
<h5>event: <span class="tsd-signature-type">Event</span></h5>
|
|
211
|
-
</li>
|
|
212
|
-
</ul>
|
|
213
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
214
|
-
</li>
|
|
215
|
-
</ul>
|
|
216
|
-
</li>
|
|
217
|
-
</ul>
|
|
218
|
-
</li>
|
|
219
|
-
</ul>
|
|
220
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
221
|
-
</li>
|
|
222
|
-
</ul>
|
|
223
|
-
</section>
|
|
224
|
-
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
|
|
225
|
-
<a name="dispatchevent" class="tsd-anchor"></a>
|
|
226
|
-
<h3>dispatch<wbr>Event</h3>
|
|
227
|
-
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
|
228
|
-
<li class="tsd-signature tsd-kind-icon">dispatch<wbr>Event<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-symbol">keyof </span><span class="tsd-signature-type">T</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>
|
|
229
|
-
<li class="tsd-signature tsd-kind-icon">dispatch<wbr>Event<span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></li>
|
|
230
|
-
</ul>
|
|
231
|
-
<ul class="tsd-descriptions">
|
|
232
|
-
<li class="tsd-description">
|
|
233
|
-
<aside class="tsd-sources">
|
|
234
|
-
<p>Implementation of EventTarget.dispatchEvent</p>
|
|
235
|
-
<ul>
|
|
236
|
-
<li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/webusb/typed-event-target.ts#L18">tsc/webusb/typed-event-target.ts:18</a></li>
|
|
237
|
-
</ul>
|
|
238
|
-
</aside>
|
|
239
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
240
|
-
<ul class="tsd-parameters">
|
|
241
|
-
<li>
|
|
242
|
-
<h5>event: <span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-symbol">keyof </span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">]</span></h5>
|
|
243
|
-
</li>
|
|
244
|
-
</ul>
|
|
245
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
|
246
|
-
</li>
|
|
247
|
-
<li class="tsd-description">
|
|
248
|
-
<aside class="tsd-sources">
|
|
249
|
-
<p>Implementation of EventTarget.dispatchEvent</p>
|
|
250
|
-
<ul>
|
|
251
|
-
<li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/webusb/typed-event-target.ts#L19">tsc/webusb/typed-event-target.ts:19</a></li>
|
|
252
|
-
</ul>
|
|
253
|
-
</aside>
|
|
254
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
255
|
-
<ul class="tsd-parameters">
|
|
256
|
-
<li>
|
|
257
|
-
<h5>event: <span class="tsd-signature-type">Event</span></h5>
|
|
258
|
-
</li>
|
|
259
|
-
</ul>
|
|
260
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
|
261
|
-
</li>
|
|
262
|
-
</ul>
|
|
263
|
-
</section>
|
|
264
|
-
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
|
|
265
|
-
<a name="removeeventlistener" class="tsd-anchor"></a>
|
|
266
|
-
<h3>remove<wbr>Event<wbr>Listener</h3>
|
|
267
|
-
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
|
268
|
-
<li class="tsd-signature tsd-kind-icon">remove<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">keyof </span><span class="tsd-signature-type">T</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-symbol">keyof </span><span class="tsd-signature-type">T</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><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
269
|
-
<li class="tsd-signature tsd-kind-icon">remove<wbr>Event<wbr>Listener<span class="tsd-signature-symbol">(</span>type<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, listener<span class="tsd-signature-symbol">: </span><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> => </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>
|
|
270
|
-
</ul>
|
|
271
|
-
<ul class="tsd-descriptions">
|
|
272
|
-
<li class="tsd-description">
|
|
273
|
-
<aside class="tsd-sources">
|
|
274
|
-
<p>Implementation of EventTarget.removeEventListener</p>
|
|
275
|
-
<ul>
|
|
276
|
-
<li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/webusb/typed-event-target.ts#L12">tsc/webusb/typed-event-target.ts:12</a></li>
|
|
277
|
-
</ul>
|
|
278
|
-
</aside>
|
|
279
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
280
|
-
<ul class="tsd-parameters">
|
|
281
|
-
<li>
|
|
282
|
-
<h5>type: <span class="tsd-signature-symbol">keyof </span><span class="tsd-signature-type">T</span></h5>
|
|
283
|
-
</li>
|
|
284
|
-
<li>
|
|
285
|
-
<h5>listener: <span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-symbol">keyof </span><span class="tsd-signature-type">T</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></h5>
|
|
286
|
-
<ul class="tsd-parameters">
|
|
287
|
-
<li class="tsd-parameter-signature">
|
|
288
|
-
<ul class="tsd-signatures tsd-kind-type-literal">
|
|
289
|
-
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-symbol">keyof </span><span class="tsd-signature-type">T</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>
|
|
290
|
-
</ul>
|
|
291
|
-
<ul class="tsd-descriptions">
|
|
292
|
-
<li class="tsd-description">
|
|
293
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
294
|
-
<ul class="tsd-parameters">
|
|
295
|
-
<li>
|
|
296
|
-
<h5>event: <span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">[</span><span class="tsd-signature-symbol">keyof </span><span class="tsd-signature-type">T</span><span class="tsd-signature-symbol">]</span></h5>
|
|
297
|
-
</li>
|
|
298
|
-
</ul>
|
|
299
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
300
|
-
</li>
|
|
301
|
-
</ul>
|
|
302
|
-
</li>
|
|
303
|
-
</ul>
|
|
304
|
-
</li>
|
|
305
|
-
</ul>
|
|
306
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
307
|
-
</li>
|
|
308
|
-
<li class="tsd-description">
|
|
309
|
-
<aside class="tsd-sources">
|
|
310
|
-
<p>Implementation of EventTarget.removeEventListener</p>
|
|
311
|
-
<ul>
|
|
312
|
-
<li>Defined in <a href="https://github.com/tessel/node-usb/blob/639b0a3/tsc/webusb/typed-event-target.ts#L13">tsc/webusb/typed-event-target.ts:13</a></li>
|
|
313
|
-
</ul>
|
|
314
|
-
</aside>
|
|
315
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
316
|
-
<ul class="tsd-parameters">
|
|
317
|
-
<li>
|
|
318
|
-
<h5>type: <span class="tsd-signature-type">string</span></h5>
|
|
319
|
-
</li>
|
|
320
|
-
<li>
|
|
321
|
-
<h5>listener: <span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol"> => </span><span class="tsd-signature-type">void</span></h5>
|
|
322
|
-
<ul class="tsd-parameters">
|
|
323
|
-
<li class="tsd-parameter-signature">
|
|
324
|
-
<ul class="tsd-signatures tsd-kind-type-literal">
|
|
325
|
-
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">(</span>event<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Event</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
326
|
-
</ul>
|
|
327
|
-
<ul class="tsd-descriptions">
|
|
328
|
-
<li class="tsd-description">
|
|
329
|
-
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
330
|
-
<ul class="tsd-parameters">
|
|
331
|
-
<li>
|
|
332
|
-
<h5>event: <span class="tsd-signature-type">Event</span></h5>
|
|
333
|
-
</li>
|
|
334
|
-
</ul>
|
|
335
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
336
|
-
</li>
|
|
337
|
-
</ul>
|
|
338
|
-
</li>
|
|
339
|
-
</ul>
|
|
340
|
-
</li>
|
|
341
|
-
</ul>
|
|
342
|
-
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
343
|
-
</li>
|
|
344
|
-
</ul>
|
|
345
|
-
</section>
|
|
346
|
-
</section>
|
|
347
|
-
</div>
|
|
348
|
-
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
349
|
-
<nav class="tsd-navigation primary">
|
|
350
|
-
<ul>
|
|
351
|
-
<li class=" ">
|
|
352
|
-
<a href="../modules.html">Exports</a>
|
|
353
|
-
</li>
|
|
354
|
-
<li class=" tsd-kind-module">
|
|
355
|
-
<a href="../modules/index.html">index</a>
|
|
356
|
-
</li>
|
|
357
|
-
<li class=" tsd-kind-module">
|
|
358
|
-
<a href="../modules/usb.html">usb</a>
|
|
359
|
-
</li>
|
|
360
|
-
<li class=" tsd-kind-module">
|
|
361
|
-
<a href="../modules/usb_bindings.html">usb/bindings</a>
|
|
362
|
-
</li>
|
|
363
|
-
<li class=" tsd-kind-module">
|
|
364
|
-
<a href="../modules/usb_capability.html">usb/capability</a>
|
|
365
|
-
</li>
|
|
366
|
-
<li class=" tsd-kind-module">
|
|
367
|
-
<a href="../modules/usb_descriptors.html">usb/descriptors</a>
|
|
368
|
-
</li>
|
|
369
|
-
<li class=" tsd-kind-module">
|
|
370
|
-
<a href="../modules/usb_device.html">usb/device</a>
|
|
371
|
-
</li>
|
|
372
|
-
<li class=" tsd-kind-module">
|
|
373
|
-
<a href="../modules/usb_endpoint.html">usb/endpoint</a>
|
|
374
|
-
</li>
|
|
375
|
-
<li class=" tsd-kind-module">
|
|
376
|
-
<a href="../modules/usb_interface.html">usb/interface</a>
|
|
377
|
-
</li>
|
|
378
|
-
<li class=" tsd-kind-module">
|
|
379
|
-
<a href="../modules/webusb.html">webusb</a>
|
|
380
|
-
</li>
|
|
381
|
-
<li class=" tsd-kind-module">
|
|
382
|
-
<a href="../modules/webusb_mutex.html">webusb/mutex</a>
|
|
383
|
-
</li>
|
|
384
|
-
<li class="current tsd-kind-module">
|
|
385
|
-
<a href="../modules/webusb_typed_event_target.html">webusb/typed-<wbr>event-<wbr>target</a>
|
|
386
|
-
</li>
|
|
387
|
-
<li class=" tsd-kind-module">
|
|
388
|
-
<a href="../modules/webusb_webusb_device.html">webusb/webusb-<wbr>device</a>
|
|
389
|
-
</li>
|
|
390
|
-
</ul>
|
|
391
|
-
</nav>
|
|
392
|
-
<nav class="tsd-navigation secondary menu-sticky">
|
|
393
|
-
<ul class="before-current">
|
|
394
|
-
</ul>
|
|
395
|
-
<ul class="current">
|
|
396
|
-
<li class="current tsd-kind-class tsd-parent-kind-module tsd-has-type-parameter">
|
|
397
|
-
<a href="webusb_typed_event_target.typedeventtarget.html" class="tsd-kind-icon">Typed<wbr>Event<wbr>Target</a>
|
|
398
|
-
<ul>
|
|
399
|
-
<li class=" tsd-kind-constructor tsd-parent-kind-class tsd-has-type-parameter">
|
|
400
|
-
<a href="webusb_typed_event_target.typedeventtarget.html#constructor" class="tsd-kind-icon">constructor</a>
|
|
401
|
-
</li>
|
|
402
|
-
<li class=" tsd-kind-method tsd-parent-kind-class">
|
|
403
|
-
<a href="webusb_typed_event_target.typedeventtarget.html#addeventlistener" class="tsd-kind-icon">add<wbr>Event<wbr>Listener</a>
|
|
404
|
-
</li>
|
|
405
|
-
<li class=" tsd-kind-method tsd-parent-kind-class">
|
|
406
|
-
<a href="webusb_typed_event_target.typedeventtarget.html#dispatchevent" class="tsd-kind-icon">dispatch<wbr>Event</a>
|
|
407
|
-
</li>
|
|
408
|
-
<li class=" tsd-kind-method tsd-parent-kind-class">
|
|
409
|
-
<a href="webusb_typed_event_target.typedeventtarget.html#removeeventlistener" class="tsd-kind-icon">remove<wbr>Event<wbr>Listener</a>
|
|
410
|
-
</li>
|
|
411
|
-
</ul>
|
|
412
|
-
</li>
|
|
413
|
-
</ul>
|
|
414
|
-
<ul class="after-current">
|
|
415
|
-
</ul>
|
|
416
|
-
</nav>
|
|
417
|
-
</div>
|
|
418
|
-
</div>
|
|
419
|
-
</div>
|
|
420
|
-
<footer>
|
|
421
|
-
<div class="container">
|
|
422
|
-
<h2>Legend</h2>
|
|
423
|
-
<div class="tsd-legend-group">
|
|
424
|
-
<ul class="tsd-legend">
|
|
425
|
-
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
|
426
|
-
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
|
427
|
-
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
|
428
|
-
</ul>
|
|
429
|
-
<ul class="tsd-legend">
|
|
430
|
-
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
|
431
|
-
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
|
432
|
-
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
|
433
|
-
</ul>
|
|
434
|
-
<ul class="tsd-legend">
|
|
435
|
-
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
|
436
|
-
</ul>
|
|
437
|
-
</div>
|
|
438
|
-
</div>
|
|
439
|
-
</footer>
|
|
440
|
-
<div class="overlay"></div>
|
|
441
|
-
<script src="../assets/js/main.js"></script>
|
|
442
|
-
</body>
|
|
443
|
-
</html>
|