Skip to content

Commit

Permalink
refactor(dsp-io-wav): update imports
Browse files Browse the repository at this point in the history
  • Loading branch information
postspectacular committed Jul 8, 2020
1 parent 7fbc569 commit 9ded859
Showing 1 changed file with 10 additions and 4 deletions.
14 changes: 10 additions & 4 deletions packages/dsp-io-wav/src/write.ts
Original file line number Diff line number Diff line change
@@ -1,9 +1,15 @@
import { assert } from "@thi.ng/api";
import { assert, Fn, IObjectOf } from "@thi.ng/api";
import { f32u16, f32u24, f32u32, f32u8 } from "@thi.ng/binary";
import { comp, concat, iterator, map, reduce, take } from "@thi.ng/transducers";
import { asBytes, bytes, u16, u24, u32, u8 } from "@thi.ng/transducers-binary";
import type { Fn, IObjectOf } from "@thi.ng/api";
import type { BinStructItem } from "@thi.ng/transducers-binary";
import {
asBytes,
BinStructItem,
bytes,
u16,
u24,
u32,
u8,
} from "@thi.ng/transducers-binary";
import type { WavSpec } from "./api";

const HEADER_SIZE = 44;
Expand Down

0 comments on commit 9ded859

Please sign in to comment.