typescript-dotnet-amd
Version:
A JavaScript-Friendly .NET Based TypeScript Library.
16 lines (12 loc) • 471 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/IFormattable.cs
*/
import {IFormatProvider} from "./IFormatProvider";
export interface IFormattable
{
toString(format?:string, formatProvider?:IFormatProvider):string;
}
export default IFormattable;