jspurefix
Version:
pure node js fix engine
7 lines (6 loc) • 341 B
text/typescript
export abstract class TimeFormatTemplate {
public static readonly DateYearMonthDay: string = 'YYYYMMDD'
public static readonly TimeHourMinSecMilliColon: string = 'HH:mm:ss.SSS'
public static readonly TimeHourMinSecColon: string = 'HH:mm:ss'
public static readonly DateYearMonthDayHyphen: string = 'YYYY-MM-DD' // 2015-03-11
}