Skip to content

Commit

Permalink
Use imported Readable flow type instead of global (#6910)
Browse files Browse the repository at this point in the history
  • Loading branch information
mischnic committed Sep 11, 2021
1 parent c5437c9 commit a911372
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/types/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1600,11 +1600,11 @@ export type Optimizer<ConfigType> = {|
*/
export type Compressor = {|
compress({|
stream: stream$Readable,
stream: Readable,
options: PluginOptions,
logger: PluginLogger,
|}): Async<{|
stream: stream$Readable,
stream: Readable,
type?: string,
|}>,
|};
Expand Down

0 comments on commit a911372

Please sign in to comment.