@deboxsoft/accounting-api
Advanced tools
Comparing version 1.5.3 to 1.5.4
{ | ||
"name": "@deboxsoft/accounting-api", | ||
"version": "1.5.3", | ||
"version": "1.5.4", | ||
"license": "SEE LICENSE IN LICENSE.md", | ||
@@ -5,0 +5,0 @@ "repository": { |
@@ -0,1 +1,4 @@ | ||
/// <reference types="dayjs/plugin/issameorafter" /> | ||
/// <reference types="dayjs/plugin/issameorbefore" /> | ||
/// <reference types="dayjs/plugin/utc" /> | ||
import dayjsBase, { Dayjs } from "dayjs"; | ||
@@ -6,15 +9,13 @@ declare type Options = { | ||
}; | ||
declare type WeekdayNames = [string, string, string, string, string, string, string]; | ||
declare type MonthNames = [string, string, string, string, string, string, string, string, string, string, string, string]; | ||
interface DateLocaleData { | ||
firstDayOfWeek(): number; | ||
weekdays(instance?: Dayjs): WeekdayNames; | ||
weekdaysShort(instance?: Dayjs): WeekdayNames; | ||
weekdaysMin(instance?: Dayjs): WeekdayNames; | ||
months(instance?: Dayjs): MonthNames; | ||
monthsShort(instance?: Dayjs): MonthNames; | ||
weekdays(instance?: Dayjs): dayjsBase.WeekdayNames; | ||
weekdaysShort(instance?: Dayjs): dayjsBase.WeekdayNames; | ||
weekdaysMin(instance?: Dayjs): dayjsBase.WeekdayNames; | ||
months(instance?: Dayjs): dayjsBase.MonthNames; | ||
monthsShort(instance?: Dayjs): dayjsBase.MonthNames; | ||
longDateFormat(format: string): string; | ||
meridiem(hour?: number, minute?: number, isLower?: boolean): string; | ||
} | ||
export declare function dayjs(d?: string | number | dayjsBase.Dayjs | Date, { format, timezone }?: Options): Dayjs; | ||
export declare function dayjs(d?: string | number | dayjsBase.Dayjs | Date, { format, timezone }?: Options): dayjsBase.Dayjs; | ||
export declare const dateLocaleData: DateLocaleData; | ||
@@ -21,0 +22,0 @@ /** |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
299656
7808