NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/rxjs/internal/util/subscribeTo.d.ts
2023-09-14 14:47:11 +08:00

5 lines
257 B
TypeScript

import { ObservableInput } from '../types';
import { Subscription } from '../Subscription';
import { Subscriber } from '../Subscriber';
export declare const subscribeTo: <T>(result: ObservableInput<T>) => (subscriber: Subscriber<T>) => void | Subscription;