@v5x/serial 0.5.4 → 0.5.6
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/README.md +73 -9
- package/dist/Vex.d.ts +4 -4
- package/dist/VexCRC.d.ts +0 -12
- package/dist/VexConnection.d.ts +106 -26
- package/dist/VexDevice.d.ts +52 -157
- package/{dts/VexDevice.d.ts → dist/VexDeviceState.d.ts} +79 -62
- package/dist/VexError.d.ts +50 -0
- package/dist/VexEvent.d.ts +15 -10
- package/dist/VexFirmware.d.ts +47 -0
- package/dist/VexFirmwareVersion.d.ts +4 -43
- package/dist/VexIniConfig.d.ts +1 -2
- package/dist/VexPacket.d.ts +3 -512
- package/dist/VexPacketBase.d.ts +24 -0
- package/dist/VexPacketEncoder.d.ts +36 -0
- package/{dts/VexPacket.d.ts → dist/VexPacketModels.d.ts} +3 -118
- package/dist/VexPacketView.d.ts +5 -3
- package/dist/VexTransfers.d.ts +20 -0
- package/dist/index.cjs +4175 -0
- package/dist/index.cjs.map +25 -0
- package/dist/index.d.ts +9 -9
- package/dist/index.js +4093 -0
- package/dist/index.js.map +25 -0
- package/package.json +39 -71
- package/dist/v5-serial-protocol.cjs.js +0 -4516
- package/dist/v5-serial-protocol.cjs.js.map +0 -1
- package/dist/v5-serial-protocol.es.js +0 -4401
- package/dist/v5-serial-protocol.es.js.map +0 -1
- package/dts/Vex.d.ts +0 -235
- package/dts/Vex.js +0 -189
- package/dts/Vex.js.map +0 -1
- package/dts/VexCRC.d.ts +0 -19
- package/dts/VexCRC.js +0 -89
- package/dts/VexCRC.js.map +0 -1
- package/dts/VexConnection.d.ts +0 -45
- package/dts/VexConnection.js +0 -500
- package/dts/VexConnection.js.map +0 -1
- package/dts/VexDevice.js +0 -944
- package/dts/VexDevice.js.map +0 -1
- package/dts/VexEvent.d.ts +0 -16
- package/dts/VexEvent.js +0 -47
- package/dts/VexEvent.js.map +0 -1
- package/dts/VexFirmwareVersion.d.ts +0 -55
- package/dts/VexFirmwareVersion.js +0 -104
- package/dts/VexFirmwareVersion.js.map +0 -1
- package/dts/VexIniConfig.d.ts +0 -27
- package/dts/VexIniConfig.js +0 -122
- package/dts/VexIniConfig.js.map +0 -1
- package/dts/VexPacket.js +0 -1036
- package/dts/VexPacket.js.map +0 -1
- package/dts/VexPacketView.d.ts +0 -18
- package/dts/VexPacketView.js +0 -84
- package/dts/VexPacketView.js.map +0 -1
- package/dts/index.d.ts +0 -9
- package/dts/index.js +0 -10
- package/dts/index.js.map +0 -1
- package/index.d.ts +0 -1098
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export * from "./Vex";
|
|
2
|
-
export * from "./VexConnection";
|
|
3
|
-
export * from "./
|
|
4
|
-
export * from "./
|
|
5
|
-
export * from "./VexEvent";
|
|
6
|
-
export * from "./VexFirmwareVersion";
|
|
7
|
-
export * from "./VexIniConfig";
|
|
8
|
-
export * from "./VexPacket";
|
|
9
|
-
export * from "./VexPacketView";
|
|
1
|
+
export * from "./Vex.js";
|
|
2
|
+
export * from "./VexConnection.js";
|
|
3
|
+
export * from "./VexDevice.js";
|
|
4
|
+
export * from "./VexError.js";
|
|
5
|
+
export * from "./VexEvent.js";
|
|
6
|
+
export * from "./VexFirmwareVersion.js";
|
|
7
|
+
export * from "./VexIniConfig.js";
|
|
8
|
+
export * from "./VexPacket.js";
|
|
9
|
+
export * from "./VexPacketView.js";
|