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