7 lines
158 B
TypeScript
Raw Normal View History

2019-11-26 14:50:43 -08:00
import { of as staticOf } from '../../observable/of';
declare module '../../Observable' {
namespace Observable {
let of: typeof staticOf;
}
}