@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
12 lines (11 loc) • 335 B
TypeScript
/**
* An abstract base class for formatting locale-sensitive information such as dates, messages, and numbers.
*/
export declare abstract class Format {
/**
* Formats a `value` to produce a string
* @param value The value to format
* @returns Formatted string
*/
format(value: any): string;
}