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

Commit 62f5238

Browse files
Merge pull request #852 from david-driscoll/ts/wrap
Added wrap method declaration
2 parents 7d4fc91 + 1de230c commit 62f5238

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)