typescript-dotnet-amd
Version:
A JavaScript-Friendly .NET Based TypeScript Library.
19 lines (14 loc) • 537 B
TypeScript
/*!
* @author electricessence / https://github.com/electricessence/
* Based upon .NET source.
* Licensing: MIT https://github.com/electricessence/TypeScript.NET/blob/master/LICENSE.md
* Source:
* http://referencesource.microsoft.com/#mscorlib/system/IObservable.cs
* https://msdn.microsoft.com/en-us/library/dd990377.aspx
*/
import {ISubscribable} from "./ISubscribable";
import {IObserver} from "./IObserver";
export interface IObservable<T> extends ISubscribable<IObserver<T>>
{
}
export default IObservable;