Opal-Estate-Pro/node_modules/rxjs/operators/timestamp.d.ts
2019-09-13 11:27:52 +07:00

15 lines
455 B
TypeScript
Executable File

import { IScheduler } from '../Scheduler';
import { OperatorFunction } from '../interfaces';
/**
* @param scheduler
* @return {Observable<Timestamp<any>>|WebSocketSubject<T>|Observable<T>}
* @method timestamp
* @owner Observable
*/
export declare function timestamp<T>(scheduler?: IScheduler): OperatorFunction<T, Timestamp<T>>;
export declare class Timestamp<T> {
value: T;
timestamp: number;
constructor(value: T, timestamp: number);
}