Skip to content

Commit

Permalink
Fix TypeScript definition for TypeScript 3.5
Browse files Browse the repository at this point in the history
  • Loading branch information
sindresorhus committed Oct 4, 2019
1 parent b71a7e9 commit d83ec15
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ declare namespace intoStream {
| Iterable<Buffer | string>;

type InputObject =
| {[key: string]: unknown}
| Iterable<{[key: string]: unknown}>;
| {[key: string]: any}
| Iterable<{[key: string]: any}>;
}

declare const intoStream: {
Expand Down

0 comments on commit d83ec15

Please # to comment.