TenantAtlas/apps/platform/.pnpm-store/v10/files/23/1e9628ba86e9b9c526d8559d29665bc79b92ef5eba3fe3e5911ad7bd7316cf15c66bdac88863dd1160ee77a712d089360cff9bedfd353b94f2efadcb1b7bd9
Ahmed Darrazi 9f74f7a658
Some checks failed
PR Fast Feedback / fast-feedback (pull_request) Failing after 51s
feat: compress governance operator outcomes
2026-04-19 14:15:11 +02:00

10 lines
290 B
Plaintext

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;
}