Skip to content

Commit

Permalink
fix(types): Add a missing import for Symbol.observable
Browse files Browse the repository at this point in the history
This was reported previously on ReactiveX#3674, but instead of adding
this import, it was fixed in @types/node: DefinitelyTyped/DefinitelyTyped#26034.

This was removed in v14 of @types/node.

Fix it properly this time.

Fixes ReactiveX#5861
  • Loading branch information
orgads committed Oct 27, 2020
1 parent e968d93 commit cdfdc70
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/internal/types.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import { Observable } from './Observable';
import { Subscription } from './Subscription';
import './symbol/observable';

/** OPERATOR INTERFACES */

Expand Down

0 comments on commit cdfdc70

Please sign in to comment.