forked from adamgibbons/ics
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.d.ts
119 lines (94 loc) · 2.74 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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
export type DateArray =
| [number, number, number, number, number]
| [number, number, number, number]
| [number, number, number];
export type DurationObject = {
weeks?: number;
days?: number;
hours?: number;
minutes?: number;
seconds?: number;
before?: boolean;
};
export type GeoCoordinates = {
lat: number;
lon: number;
};
export type EventStatus = 'TENTATIVE' | 'CONFIRMED' | 'CANCELLED';
export type ParticipationStatus =
| 'NEEDS-ACTION'
| 'ACCEPTED'
| 'DECLINED'
| 'TENTATIVE'
| 'DELEGATED'
| 'COMPLETED'
| 'IN-PROCESS';
export type ParticipationRole =
| 'CHAIR'
| 'REQ-PARTICIPANT'
| 'OPT-PARTICIPANT'
| 'NON-PARTICIPANT';
export type Person = {
name?: string;
email?: string;
dir?: string;
};
export type Attendee = Person & {
rsvp?: boolean;
partstat?: ParticipationStatus;
role?: ParticipationRole;
scheduleAgent?: 'SERVER' | 'CLIENT' | 'NONE';
};
export type ActionType = 'audio' | 'display' | 'email' | 'procedure';
/**
* This property defines the access classification for a calendar component.
*/
export type classificationType = 'PUBLIC' | 'PRIVATE' | 'CONFIDENTIAL' | string;
export type Alarm = {
action?: ActionType;
description?: string;
summary?: string;
duration?: DurationObject;
trigger?: DurationObject; // @todo DateArray | DurationObject;
repeat?: number;
attachType?: string;
attach?: string;
};
export type EventAttributes = {
start: DateArray;
startInputType?: 'local' | 'utc';
startOutputType?: 'local' | 'utc';
endInputType?: 'local' | 'utc';
endOutputType?: 'local' | 'utc';
title?: string;
description?: string;
location?: string;
geo?: GeoCoordinates;
url?: string;
status?: EventStatus;
busyStatus?: 'FREE' | 'BUSY' | 'TENTATIVE' | 'OOF';
organizer?: Person & {
sentBy?: string;
scheduleAgent?: 'SERVER' | 'CLIENT' | 'NONE';
};
attendees?: Attendee[];
categories?: string[];
alarms?: Alarm[];
productId?: string;
uid?: string;
method?: string;
recurrenceRule?: string;
sequence?: number;
calName?: string;
classification?: classificationType;
created?: DateArray;
lastModified?: DateArray;
htmlContent?: string;
} & ({ end: DateArray } | { duration: DurationObject });
export type ReturnObject = { error?: Error; value?: string };
type NodeCallback = (error: Error | undefined, value: string) => void;
export function createEvent(attributes: EventAttributes, callback: NodeCallback): void;
export function createEvent(attributes: EventAttributes): ReturnObject;
export function createEvents(events: EventAttributes[], callback: NodeCallback): void;
export function createEvents(events: EventAttributes[]): ReturnObject;
export function convertTimestampToArray(timestamp: Number, inputType: String): DateArray;