• File: Operator.ts
  • Full Path: /home/awtadalkhimacom/public_html/services/node_modules/rxjs/src/internal/Operator.ts
  • Date Modified: 10/30/2025 4:29 AM
  • File size: 290 bytes
  • MIME-type: text/x-java
  • Charset: utf-8
import { Subscriber } from './Subscriber';
import { TeardownLogic } from './types';

/***
 * @deprecated Internal implementation detail, do not use directly. Will be made internal in v8.
 */
export interface Operator<T, R> {
  call(subscriber: Subscriber<R>, source: any): TeardownLogic;
}