UNPKG

dotnet-format

Version:

📝 Pretty accurate port of awesome .NET formatting operations for JS environment

7 lines (6 loc) 298 B
export declare abstract class Formatter<T> { format(value: any, format?: string, culture?: string): string | never; protected abstract _cast(value: any): T | never; protected abstract _format(value: T, format: string, culture: string): string | never; } export default Formatter;