@lifaon/rx-js-light
Version:
Blazing fast Observables
6 lines (5 loc) • 542 B
TypeScript
import { ICompleteNotification } from '../../../../../../misc/notifications/built-in/complete/complete-notification.type';
import { INextNotification } from '../../../../../../misc/notifications/built-in/next/next-notification.type';
import { IObservable } from '../../../../../type/observable.type';
export declare type IObservableCompleteNotifications<GValue> = INextNotification<GValue> | ICompleteNotification;
export declare function complete<GValue>(...values: readonly GValue[]): IObservable<IObservableCompleteNotifications<GValue>>;