7 lines
161 B
TypeScript
Executable File
7 lines
161 B
TypeScript
Executable File
import { pairwise } from '../../operator/pairwise';
|
|
declare module '../../Observable' {
|
|
interface Observable<T> {
|
|
pairwise: typeof pairwise;
|
|
}
|
|
}
|