typescript-dotnet-core
Version:
A the core classes and utilities of a JavaScript-Friendly .NET Based TypeScript Library.
14 lines (11 loc) • 450 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
* Source: http://referencesource.microsoft.com/#mscorlib/system/IFormattable.cs
*/
import IFormatProvider from "./IFormatProvider";
export default interface IFormattable
{
toString(format?:string, formatProvider?:IFormatProvider):string;
}