-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.d.ts
66 lines (59 loc) · 1.94 KB
/
index.d.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
type Availability = {
/**
* ISO 8601 string
*/
start: string
/**
* ISO 8601 string
*/
end: string
}
declare class AvailabilitySchedule {
constructor(
/**
* Start date of the schedule as an ISO 8601 string
*/
startDate: string,
/**
* End date of the schedule as an ISO 8601 string
*/
endDate: string
)
/**
* @param startDate ISO 8601 string
* @param endDate ISO 8601 string
*/
addAvailability(startDate: string, endDate: string): void
/**
* Start and end dates may be earlier than the start date passed to the constructor.
* @param startDate ISO 8601 string
* @param endDate ISO 8601 string
* @param repeatWeekdays Array of integers that indicate the weekdays on which the availability is repeated. 1 = Mon, 7 = Sun (in the same time zone as startDate).
*/
addWeeklyRecurringAvailability(
startDate: string,
endDate: string,
repeatWeekdays: number[]
): void
/**
* Use this to remove a time range from any existing availabilities.
* For example, call this for scheduled appointments or meetings.
* @param startDate ISO 8601 string
* @param endDate ISO 8601 string
*/
removeAvailability(startDate: string, endDate: string): void
/**
* Returns all availabilities in chronological order.
* @param timezone Accepts just the timezone offset such as "-05:00" as well as a full time stamp that includes the offset (e.g. "2000-01-01T00:00:00-04:00"). Defaults to '+0000'
*/
getAvailabilities(timezone?: string): Availability[]
/**
* Returns true if the given time range falls within any availability.
* @param startDate ISO 8601 string
* @param endDate ISO 8601 string
*/
isAvailable(startDate: string, endDate: string): boolean
}
declare module 'availability-schedule' {
export = AvailabilitySchedule
}