mirror of
https://github.com/fooflington/selfdefined.git
synced 2025-09-14 11:39:05 +00:00
10 lines
225 B
TypeScript
10 lines
225 B
TypeScript
import { Observable } from '../../Observable';
|
|
import { audit } from '../../operator/audit';
|
|
|
|
Observable.prototype.audit = audit;
|
|
|
|
declare module '../../Observable' {
|
|
interface Observable<T> {
|
|
audit: typeof audit;
|
|
}
|
|
} |