first.d.ts 149 Bytes
Newer Older
patcharaporn's avatar
patcharaporn committed
1 2 3 4 5 6
import { first } from '../../operator/first';
declare module '../../Observable' {
    interface Observable<T> {
        first: typeof first;
    }
}