Skip to content

Commit

Permalink
Move finally under observable-returning methods.
Browse files Browse the repository at this point in the history
  • Loading branch information
benlesh committed Dec 19, 2023
1 parent 8910969 commit 1ebb902
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -351,7 +351,6 @@ interface Observable {
constructor(SubscribeCallback callback);
undefined subscribe(optional Observer observer = {}, optional SubscribeOptions = {});

Observable finally(VoidFunction callback);

// Constructs a native Observable from `value` if it's any of the following:
// - Observable
Expand All @@ -369,6 +368,7 @@ interface Observable {
Observable take(unsigned long long);
Observable drop(unsigned long long);
Observable flatMap(Mapper mapper);
Observable finally(VoidFunction callback);
Promise<sequence<any>> toArray(optional PromiseOptions options);
Promise<undefined> forEach(Visitor callback, optional PromiseOptions options);

Expand Down

0 comments on commit 1ebb902

Please sign in to comment.