typescript-dotnet-core
Version:
A the core classes and utilities of a JavaScript-Friendly .NET Based TypeScript Library.
15 lines (11 loc) • 383 B
TypeScript
/*!
* @author electricessence / https://github.com/electricessence/
* Based upon .NET source.
* Licensing: MIT https://github.com/electricessence/TypeScript.NET-Core/blob/master/LICENSE.md
*/
import Primitive from "./Primitive";
export default interface IComparable<T>
{
compareTo(other:T):number;
}
export declare type Comparable = Primitive|IComparable<any>;