Skip to content

Commit

Permalink
fix(stream): reorder imports to avoid CodeSandbox error
Browse files Browse the repository at this point in the history
  • Loading branch information
vitoke committed Jul 23, 2021
1 parent e2149b8 commit adfbe19
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
8 changes: 4 additions & 4 deletions deno_dist/stream/internal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ export * from './stream/interface.ts';
export * from './stream/streamable.ts';
export * from './stream/stream-source.ts';

export * from './async-stream/utils.ts';
export * as AsyncStreamCustom from './async-stream/async-stream-custom.ts';

export * from './async-stream/interface.ts';
export * from './async-stream/async-fast-iterator.ts';
export * from './async-stream/async-fast-iterable.ts';
export * from './async-stream/async-streamable.ts';

export * as AsyncStreamCustom from './async-stream/async-stream-custom.ts';

export * from './async-stream/interface.ts';
export * from './async-stream/async-stream-source.ts';
8 changes: 4 additions & 4 deletions packages/stream/src/internal.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ export * from './stream/interface';
export * from './stream/streamable';
export * from './stream/stream-source';

export * from './async-stream/utils';
export * as AsyncStreamCustom from './async-stream/async-stream-custom';

export * from './async-stream/interface';
export * from './async-stream/async-fast-iterator';
export * from './async-stream/async-fast-iterable';
export * from './async-stream/async-streamable';

export * as AsyncStreamCustom from './async-stream/async-stream-custom';

export * from './async-stream/interface';
export * from './async-stream/async-stream-source';

0 comments on commit adfbe19

Please sign in to comment.