Skip to content

Commit

Permalink
chore(shareReplay): remove compat deprecation
Browse files Browse the repository at this point in the history
  • Loading branch information
cartant committed Jan 7, 2019
1 parent 84785db commit a813fc0
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion compat/operator/shareReplay.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ import { ShareReplayConfig } from 'rxjs/internal-compatibility';
* @owner Observable
*/
export function shareReplay<T>(this: Observable<T>, config: ShareReplayConfig): Observable<T>;
/** @deprecated Use config parameter */
export function shareReplay<T>(this: Observable<T>, bufferSize?: number, windowTime?: number, scheduler?: SchedulerLike): Observable<T>;
export function shareReplay<T>(this: Observable<T>, configOrBufferSize?: ShareReplayConfig | number, windowTime?: number, scheduler?: SchedulerLike):
Observable<T> {
Expand Down

0 comments on commit a813fc0

Please sign in to comment.