Skip to content

Commit

Permalink
Update mod.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
Mqxx committed Jan 8, 2024
1 parent 9f4a883 commit 6797ab1
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions mod.ts
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import Serial from "./src/serial/index.ts";
import { baudrates } from "./src/serial/constant/baudrates.ts";
import { dataBits } from "./src/serial/constant/data_bits.ts";
import { parities } from "./src/serial/constant/parities.ts";
import { stopBits } from "./src/serial/constant/stop_bits.ts";
import Serial from "./src/serial.ts";
import { baudrates } from "./src/constant/baudrates.ts";
import { dataBits } from "./src/constant/data_bits.ts";
import { parities } from "./src/constant/parities.ts";
import { stopBits } from "./src/constant/stop_bits.ts";

import { Baudrate } from "./src/serial/type/baudrate.d.ts";
import { DataBits } from "./src/serial/type/data_bits.d.ts";
import { Parity } from "./src/serial/type/parity.d.ts";
import { StopBits } from "./src/serial/type/stop_bits.d.ts";
import { Baudrate } from "./src/type/baudrate.ts";
import { DataBits } from "./src/type/data_bits.ts";
import { Parity } from "./src/type/parity.ts";
import { StopBits } from "./src/type/stop_bits.ts";

export {
Serial,
Expand Down

0 comments on commit 6797ab1

Please sign in to comment.