Skip to content
This repository was archived by the owner on Apr 20, 2018. It is now read-only.

Commit 1de230c

Browse files
Added wrap method declaration
1 parent ca0f50b commit 1de230c

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

ts/core/linq/observable/spawn.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
/// <reference path="../../observable.ts"/>
22
module Rx {
33
export interface ObservableStatic {
4-
spawn<T>(fn: () => T): Observable<T>;
4+
wrap<T>(fn: Function): Observable<T>;
5+
spawn<T>(fn: Function): Observable<T>;
56
}
67
}

0 commit comments

Comments
 (0)