mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-11-01 14:38:32 +00:00
7 lines
149 B
TypeScript
7 lines
149 B
TypeScript
|
|
import { first } from '../../operator/first';
|
||
|
|
declare module '../../Observable' {
|
||
|
|
interface Observable<T> {
|
||
|
|
first: typeof first;
|
||
|
|
}
|
||
|
|
}
|