@polkadot/rpc-core
Version:
A JavaScript wrapper for the Polkadot JsonRPC interface
16 lines (15 loc) • 411 B
TypeScript
import type { Observable } from 'rxjs';
export type DrrResult = <T>(source$: Observable<T>) => Observable<T>;
interface Options {
delay?: number;
skipChange?: boolean;
skipTimeout?: boolean;
}
/**
* Shorthand for distinctUntilChanged(), publishReplay(1) and refCount().
*
* @ignore
* @internal
*/
export declare function drr({ delay, skipChange, skipTimeout }?: Options): DrrResult;
export {};