UNPKG

@lifaon/rx-js-light

Version:

Blazing fast Observables

6 lines (5 loc) 401 B
import { INotification } from '../notification.type'; import { IProgress } from '../../progress/progress.type'; export declare type IProgressNotification = INotification<'progress', IProgress>; export declare function createProgressNotification(progress: IProgress): IProgressNotification; export declare function createBasicProgressNotification(loaded: number, total: number): IProgressNotification;