diff --git a/src/index.ts b/src/index.ts index 4555930..93dcc2b 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,18 +1,15 @@ import pullFileCLI from "./download/index.js"; import CLIPullProgress from "./download/cli-pull-progress.js"; -import {IStreamProgress} from "./download/stream-progress/istream-progress.js"; import {truncateText} from "./utils/truncate-text.js"; import CopyProgress from "./download/stream-progress/copy-progress.js"; import FastDownload from "./download/stream-progress/fast-download.js"; +import {IStreamProgress} from "./download/stream-progress/istream-progress.js"; export { pullFileCLI, CLIPullProgress, truncateText, CopyProgress, - FastDownload -}; - -export type { + FastDownload, IStreamProgress };