TenantAtlas/apps/platform/.pnpm-store/v10/files/b9/dc1674aa07f960dcb3d495c35597d82f9049b59971ad5d7853386a670a634b792e261b89ef7729c543cebab25c03d10bb4730e21429fc13240d8b742cb8344
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

9 lines
329 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;
}
//# sourceMappingURL=Operator.d.ts.map