@cute-dw/core
Version:
This TypeScript library is the main part of a more powerfull package designed for the fast WEB software development. The cornerstone of the library is the **DataStore** class, which might be useful when you need a full control of the data, but do not need
16 lines (15 loc) • 447 B
TypeScript
import { Format } from "./Format";
/**
* The abstract base class for all number formats. This class provides the interface for formatting and parsing numbers.
*/
export declare abstract class NumberFormat extends Format {
static DEFAULT: string;
static DECIMAL: string;
static CURRENCY: string;
static PERCENT: string;
static UNIT: string;
/**
* @override
*/
format(value: number): string;
}