Comparing version 1.0.3 to 1.1.0
{ | ||
"name": "dayspan", | ||
"version": "1.0.3", | ||
"version": "1.1.0", | ||
"description": "A date & schedule library to use for advanced calendars in TypeScript and JS", | ||
@@ -5,0 +5,0 @@ "main": "dist/dayspan.js", |
@@ -379,5 +379,4 @@ import { Unit } from './DayFunctions'; | ||
mutate(mutator: (date: Date) => any): Day; | ||
add(amount: number, unit?: Unit): Day; | ||
add(unit: Unit, amount?: number): Day; | ||
relative(millis: number): Day; | ||
relativeDays(days: number): Day; | ||
prev(days?: number): Day; | ||
@@ -390,5 +389,2 @@ next(days?: number): Day; | ||
withMonth(month: number): Day; | ||
relativeMonths(months: number): Day; | ||
prevMonth(months?: number): Day; | ||
nextMonth(months?: number): Day; | ||
protected withWeek(week: number, relativeWeek: number): Day; | ||
@@ -401,13 +397,4 @@ withWeekOfYear(week: number): Day; | ||
withFullWeekOfMonth(week: number): Day; | ||
relativeWeeks(weeks: number): Day; | ||
prevWeek(weeks?: number): Day; | ||
nextWeek(weeks?: number): Day; | ||
withYear(year: number): Day; | ||
relativeYears(years: number): Day; | ||
prevYear(years?: number): Day; | ||
nextYear(years?: number): Day; | ||
withHour(hour: number): Day; | ||
relativeHours(hours: number): Day; | ||
prevHour(hours?: number): Day; | ||
nextHour(hours?: number): Day; | ||
withTimes(hour?: number, minute?: number, second?: number, millisecond?: number): Day; | ||
@@ -417,23 +404,5 @@ withTime(time: Time): Day; | ||
startOf(unit: Unit): Day; | ||
isStartOf(unit: Unit): boolean; | ||
endOf(unit: Unit, inclusive?: boolean): Day; | ||
start(): Day; | ||
isStart(): boolean; | ||
end(inclusive?: boolean): Day; | ||
isEnd(): boolean; | ||
startOfHour(): Day; | ||
isStartOfHour(): boolean; | ||
endOfHour(inclusive?: boolean): Day; | ||
isEndOfHour(): boolean; | ||
startOfWeek(): Day; | ||
isStartOfWeek(): boolean; | ||
endOfWeek(inclusive?: boolean): Day; | ||
isEndOfWeek(): boolean; | ||
startOfMonth(): Day; | ||
isStartOfMonth(): boolean; | ||
endOfMonth(inclusive?: boolean): Day; | ||
isEndOfMonth(): boolean; | ||
startOfYear(): Day; | ||
isStartOfYear(): boolean; | ||
endOfYear(inclusive?: boolean): Day; | ||
isEndOfYear(): boolean; | ||
isEndOf(unit: Unit, inclusive?: boolean): boolean; | ||
daysInMonth(): number; | ||
@@ -440,0 +409,0 @@ daysInYear(): number; |
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
304998
4834