7 lines
169 B
TypeScript
7 lines
169 B
TypeScript
import { skipLast } from '../../operator/skipLast';
|
|
declare module 'rxjs/internal/Observable' {
|
|
interface Observable<T> {
|
|
skipLast: typeof skipLast;
|
|
}
|
|
}
|