@barchart/common-js
Version:
Library of common JavaScript utilities
23 lines (19 loc) • 682 B
TypeScript
declare module '@barchart/common-js/lang/DayFormatType' {
export default class DayFormatType {
static get YYYY_MM_DD(): DayFormatType;
static get MM_DD_YYYY(): DayFormatType;
static get MM_DD_YY(): DayFormatType;
}
}
declare module '@barchart/common-js/lang/Day' {
import DayFormatType from "@barchart/common-js/lang/DayFormatType";
export default class Day {
format(): string;
get year(): number;
get month(): number;
get day(): number;
addDays(days: number, inverse?: boolean): Day;
static parse(value: string, type?: DayFormatType): Day;
static fromDate(date: Date): Day;
}
}