@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
22 lines (21 loc) • 658 B
TypeScript
import { Format } from "./Format";
export declare abstract class DateFormat extends Format {
static DEFAULT: string;
static SHORTDATE: string;
static MEDIUMDATE: string;
static LONGDATE: string;
static FULLDATE: string;
static ISODATE: string;
static TIME: string;
static SHORTTIME: string;
static MEDIUMTIME: string;
static LONGTIME: string;
static FULLTIME: string;
static ISOTIME: string;
static SHORTTIMEAGO: string;
static LONGTIMEAGO: string;
static DATETIME: string;
static ISODATETIME: string;
static ISODATETIMETZ: string;
static ISODATETIMEUTC: string;
}