@hiraokahypertools/pst-extractor 0.2.0-alpha.2 → 0.4.0-alpha.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/IPSTActivity.d.ts +66 -0
- package/dist/IPSTActivity.js +1 -0
- package/dist/IPSTAppointment.d.ts +198 -0
- package/dist/IPSTAppointment.js +1 -0
- package/dist/IPSTAttachment.d.ts +120 -0
- package/dist/IPSTAttachment.js +1 -0
- package/dist/IPSTContact.d.ts +669 -0
- package/dist/IPSTContact.js +1 -0
- package/dist/IPSTFile.d.ts +54 -0
- package/dist/IPSTFile.js +1 -0
- package/dist/IPSTFolder.d.ts +70 -0
- package/dist/IPSTFolder.js +1 -0
- package/dist/IPSTMessage.d.ts +570 -0
- package/dist/IPSTMessage.js +1 -0
- package/dist/IPSTMessageStore.d.ts +7 -0
- package/dist/IPSTMessageStore.js +1 -0
- package/dist/IPSTObject.d.ts +30 -0
- package/dist/IPSTObject.js +1 -0
- package/dist/IPSTRecipient.d.ts +48 -0
- package/dist/IPSTRecipient.js +1 -0
- package/dist/IPSTTask.d.ts +98 -0
- package/dist/IPSTTask.js +1 -0
- package/dist/IRecurrencePattern.d.ts +14 -0
- package/dist/IRecurrencePattern.js +1 -0
- package/dist/LZFu.class.d.ts +0 -1
- package/dist/LZFu.class.js +0 -1
- package/dist/NodeMap.class.d.ts +2 -5
- package/dist/NodeMap.class.js +2 -5
- package/dist/PAUtil.d.ts +7 -0
- package/dist/PAUtil.js +4 -0
- package/dist/PSTActivity.class.d.ts +2 -13
- package/dist/PSTActivity.class.js +0 -12
- package/dist/PSTAppointment.class.d.ts +2 -34
- package/dist/PSTAppointment.class.js +0 -34
- package/dist/PSTAttachment.class.d.ts +2 -20
- package/dist/PSTAttachment.class.js +0 -20
- package/dist/PSTContact.class.d.ts +2 -111
- package/dist/PSTContact.class.js +0 -111
- package/dist/PSTFile.class.d.ts +5 -18
- package/dist/PSTFile.class.js +0 -14
- package/dist/PSTFolder.class.d.ts +2 -15
- package/dist/PSTFolder.class.js +0 -14
- package/dist/PSTMessage.class.d.ts +2 -95
- package/dist/PSTMessage.class.js +0 -94
- package/dist/PSTMessageStore.class.d.ts +2 -2
- package/dist/PSTMessageStore.class.js +0 -1
- package/dist/PSTObject.class.d.ts +2 -12
- package/dist/PSTObject.class.js +0 -11
- package/dist/PSTRecipient.class.d.ts +2 -9
- package/dist/PSTRecipient.class.js +0 -9
- package/dist/PSTTask.class.d.ts +2 -19
- package/dist/PSTTask.class.js +0 -18
- package/dist/PSTUtil.class.d.ts +0 -9
- package/dist/PSTUtil.class.js +0 -9
- package/dist/PropertyTypeObject.d.ts +1 -1
- package/dist/PropertyTypeObject.js +1 -1
- package/dist/PropertyValueResolverV1.d.ts +3 -0
- package/dist/PropertyValueResolverV1.js +3 -0
- package/dist/RecurrencePattern.class.d.ts +2 -1
- package/dist/RootProvider.d.ts +3 -0
- package/dist/index.d.ts +18 -0
- package/dist/openPstFile.d.ts +3 -3
- package/package.json +7 -64
|
@@ -1,9 +1,10 @@
|
|
|
1
|
+
import type { IPSTContact } from './IPSTContact.js';
|
|
1
2
|
import type { PropertyFinder } from './PAUtil.js';
|
|
2
3
|
import type { PLNode } from './PLNode.js';
|
|
3
4
|
import type { PLSubNode } from './PLSubNode.js';
|
|
4
5
|
import { PSTMessage } from './PSTMessage.class.js';
|
|
5
6
|
import type { RootProvider } from './RootProvider.js';
|
|
6
|
-
export declare class PSTContact extends PSTMessage {
|
|
7
|
+
export declare class PSTContact extends PSTMessage implements IPSTContact {
|
|
7
8
|
/**
|
|
8
9
|
*
|
|
9
10
|
* @internal
|
|
@@ -14,7 +15,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
14
15
|
* https://msdn.microsoft.com/en-us/library/office/cc842401.aspx
|
|
15
16
|
* @readonly
|
|
16
17
|
* @type {string}
|
|
17
|
-
* @memberof PSTContact
|
|
18
18
|
*/
|
|
19
19
|
get account(): string;
|
|
20
20
|
/**
|
|
@@ -22,7 +22,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
22
22
|
* https://msdn.microsoft.com/en-us/library/office/cc839943.aspx
|
|
23
23
|
* @readonly
|
|
24
24
|
* @type {string}
|
|
25
|
-
* @memberof PSTContact
|
|
26
25
|
*/
|
|
27
26
|
get callbackTelephoneNumber(): string;
|
|
28
27
|
/**
|
|
@@ -30,7 +29,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
30
29
|
* https://msdn.microsoft.com/en-us/library/office/cc842136.aspx
|
|
31
30
|
* @readonly
|
|
32
31
|
* @type {string}
|
|
33
|
-
* @memberof PSTContact
|
|
34
32
|
*/
|
|
35
33
|
get generation(): string;
|
|
36
34
|
/**
|
|
@@ -38,7 +36,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
38
36
|
* https://msdn.microsoft.com/en-us/library/office/cc815351.aspx
|
|
39
37
|
* @readonly
|
|
40
38
|
* @type {string}
|
|
41
|
-
* @memberof PSTContact
|
|
42
39
|
*/
|
|
43
40
|
get givenName(): string;
|
|
44
41
|
/**
|
|
@@ -46,7 +43,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
46
43
|
* https://msdn.microsoft.com/en-us/library/office/cc815890.aspx
|
|
47
44
|
* @readonly
|
|
48
45
|
* @type {string}
|
|
49
|
-
* @memberof PSTContact
|
|
50
46
|
*/
|
|
51
47
|
get governmentIdNumber(): string;
|
|
52
48
|
/**
|
|
@@ -54,7 +50,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
54
50
|
* https://msdn.microsoft.com/en-us/library/office/cc839937.aspx
|
|
55
51
|
* @readonly
|
|
56
52
|
* @type {string}
|
|
57
|
-
* @memberof PSTContact
|
|
58
53
|
*/
|
|
59
54
|
get businessTelephoneNumber(): string;
|
|
60
55
|
/**
|
|
@@ -62,7 +57,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
62
57
|
* https://msdn.microsoft.com/en-us/library/office/cc815389.aspx
|
|
63
58
|
* @readonly
|
|
64
59
|
* @type {string}
|
|
65
|
-
* @memberof PSTContact
|
|
66
60
|
*/
|
|
67
61
|
get homeTelephoneNumber(): string;
|
|
68
62
|
/**
|
|
@@ -70,7 +64,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
70
64
|
* https://msdn.microsoft.com/en-us/library/office/cc839843.aspx
|
|
71
65
|
* @readonly
|
|
72
66
|
* @type {string}
|
|
73
|
-
* @memberof PSTContact
|
|
74
67
|
*/
|
|
75
68
|
get initials(): string;
|
|
76
69
|
/**
|
|
@@ -78,7 +71,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
78
71
|
* https://msdn.microsoft.com/en-us/library/office/cc842250.aspx
|
|
79
72
|
* @readonly
|
|
80
73
|
* @type {string}
|
|
81
|
-
* @memberof PSTContact
|
|
82
74
|
*/
|
|
83
75
|
get keyword(): string;
|
|
84
76
|
/**
|
|
@@ -86,7 +78,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
86
78
|
* https://msdn.microsoft.com/en-us/library/office/cc839724.aspx
|
|
87
79
|
* @readonly
|
|
88
80
|
* @type {string}
|
|
89
|
-
* @memberof PSTContact
|
|
90
81
|
*/
|
|
91
82
|
get language(): string;
|
|
92
83
|
/**
|
|
@@ -94,7 +85,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
94
85
|
* https://msdn.microsoft.com/en-us/library/office/cc815567.aspx
|
|
95
86
|
* @readonly
|
|
96
87
|
* @type {string}
|
|
97
|
-
* @memberof PSTContact
|
|
98
88
|
*/
|
|
99
89
|
get location(): string;
|
|
100
90
|
/**
|
|
@@ -102,7 +92,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
102
92
|
* https://msdn.microsoft.com/en-us/library/office/cc842474.aspx
|
|
103
93
|
* @readonly
|
|
104
94
|
* @type {string}
|
|
105
|
-
* @memberof PSTContact
|
|
106
95
|
*/
|
|
107
96
|
get mhsCommonName(): string;
|
|
108
97
|
/**
|
|
@@ -110,7 +99,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
110
99
|
* https://msdn.microsoft.com/en-us/library/office/cc765672.aspx
|
|
111
100
|
* @readonly
|
|
112
101
|
* @type {string}
|
|
113
|
-
* @memberof PSTContact
|
|
114
102
|
*/
|
|
115
103
|
get organizationalIdNumber(): string;
|
|
116
104
|
/**
|
|
@@ -118,7 +106,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
118
106
|
* https://msdn.microsoft.com/en-us/library/office/cc765704.aspx
|
|
119
107
|
* @readonly
|
|
120
108
|
* @type {string}
|
|
121
|
-
* @memberof PSTContact
|
|
122
109
|
*/
|
|
123
110
|
get surname(): string;
|
|
124
111
|
/**
|
|
@@ -126,7 +113,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
126
113
|
* https://msdn.microsoft.com/en-us/library/office/cc765709.aspx
|
|
127
114
|
* @readonly
|
|
128
115
|
* @type {string}
|
|
129
|
-
* @memberof PSTContact
|
|
130
116
|
*/
|
|
131
117
|
get originalDisplayName(): string;
|
|
132
118
|
/**
|
|
@@ -134,7 +120,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
134
120
|
* https://msdn.microsoft.com/en-us/library/office/cc842549.aspx
|
|
135
121
|
* @readonly
|
|
136
122
|
* @type {string}
|
|
137
|
-
* @memberof PSTContact
|
|
138
123
|
*/
|
|
139
124
|
get postalAddress(): string;
|
|
140
125
|
/**
|
|
@@ -142,7 +127,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
142
127
|
* https://msdn.microsoft.com/en-us/library/office/cc842192.aspx
|
|
143
128
|
* @readonly
|
|
144
129
|
* @type {string}
|
|
145
|
-
* @memberof PSTContact
|
|
146
130
|
*/
|
|
147
131
|
get companyName(): string;
|
|
148
132
|
/**
|
|
@@ -150,7 +134,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
150
134
|
* https://msdn.microsoft.com/en-us/library/office/cc815831.aspx
|
|
151
135
|
* @readonly
|
|
152
136
|
* @type {string}
|
|
153
|
-
* @memberof PSTContact
|
|
154
137
|
*/
|
|
155
138
|
get title(): string;
|
|
156
139
|
/**
|
|
@@ -158,7 +141,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
158
141
|
* https://msdn.microsoft.com/en-us/library/office/cc839825.aspx
|
|
159
142
|
* @readonly
|
|
160
143
|
* @type {string}
|
|
161
|
-
* @memberof PSTContact
|
|
162
144
|
*/
|
|
163
145
|
get departmentName(): string;
|
|
164
146
|
/**
|
|
@@ -166,7 +148,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
166
148
|
* https://msdn.microsoft.com/en-us/library/office/cc842269.aspx
|
|
167
149
|
* @readonly
|
|
168
150
|
* @type {string}
|
|
169
|
-
* @memberof PSTContact
|
|
170
151
|
*/
|
|
171
152
|
get officeLocation(): string;
|
|
172
153
|
/**
|
|
@@ -174,7 +155,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
174
155
|
* https://msdn.microsoft.com/en-us/library/office/cc839969.aspx
|
|
175
156
|
* @readonly
|
|
176
157
|
* @type {string}
|
|
177
|
-
* @memberof PSTContact
|
|
178
158
|
*/
|
|
179
159
|
get primaryTelephoneNumber(): string;
|
|
180
160
|
/**
|
|
@@ -182,7 +162,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
182
162
|
* https://msdn.microsoft.com/en-us/library/office/cc841990.aspx
|
|
183
163
|
* @readonly
|
|
184
164
|
* @type {string}
|
|
185
|
-
* @memberof PSTContact
|
|
186
165
|
*/
|
|
187
166
|
get business2TelephoneNumber(): string;
|
|
188
167
|
/**
|
|
@@ -190,7 +169,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
190
169
|
* https://msdn.microsoft.com/en-us/library/office/cc839798.aspx
|
|
191
170
|
* @readonly
|
|
192
171
|
* @type {string}
|
|
193
|
-
* @memberof PSTContact
|
|
194
172
|
*/
|
|
195
173
|
get mobileTelephoneNumber(): string;
|
|
196
174
|
/**
|
|
@@ -198,7 +176,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
198
176
|
* https://msdn.microsoft.com/en-us/library/office/cc839806.aspx
|
|
199
177
|
* @readonly
|
|
200
178
|
* @type {string}
|
|
201
|
-
* @memberof PSTContact
|
|
202
179
|
*/
|
|
203
180
|
get radioTelephoneNumber(): string;
|
|
204
181
|
/**
|
|
@@ -206,7 +183,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
206
183
|
* https://msdn.microsoft.com/en-us/library/office/cc815394.aspx
|
|
207
184
|
* @readonly
|
|
208
185
|
* @type {string}
|
|
209
|
-
* @memberof PSTContact
|
|
210
186
|
*/
|
|
211
187
|
get carTelephoneNumber(): string;
|
|
212
188
|
/**
|
|
@@ -214,7 +190,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
214
190
|
* https://msdn.microsoft.com/en-us/library/office/cc839561.aspx
|
|
215
191
|
* @readonly
|
|
216
192
|
* @type {string}
|
|
217
|
-
* @memberof PSTContact
|
|
218
193
|
*/
|
|
219
194
|
get otherTelephoneNumber(): string;
|
|
220
195
|
/**
|
|
@@ -222,7 +197,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
222
197
|
* https://msdn.microsoft.com/en-us/library/office/cc815723.aspx
|
|
223
198
|
* @readonly
|
|
224
199
|
* @type {string}
|
|
225
|
-
* @memberof PSTContact
|
|
226
200
|
*/
|
|
227
201
|
get transmittableDisplayName(): string;
|
|
228
202
|
/**
|
|
@@ -230,7 +204,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
230
204
|
* https://msdn.microsoft.com/en-us/library/office/cc765824.aspx
|
|
231
205
|
* @readonly
|
|
232
206
|
* @type {string}
|
|
233
|
-
* @memberof PSTContact
|
|
234
207
|
*/
|
|
235
208
|
get pagerTelephoneNumber(): string;
|
|
236
209
|
/**
|
|
@@ -238,7 +211,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
238
211
|
* https://msdn.microsoft.com/en-us/library/office/cc815713.aspx
|
|
239
212
|
* @readonly
|
|
240
213
|
* @type {string}
|
|
241
|
-
* @memberof PSTContact
|
|
242
214
|
*/
|
|
243
215
|
get primaryFaxNumber(): string;
|
|
244
216
|
/**
|
|
@@ -246,7 +218,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
246
218
|
* https://msdn.microsoft.com/en-us/library/office/cc765799.aspx
|
|
247
219
|
* @readonly
|
|
248
220
|
* @type {string}
|
|
249
|
-
* @memberof PSTContact
|
|
250
221
|
*/
|
|
251
222
|
get businessFaxNumber(): string;
|
|
252
223
|
/**
|
|
@@ -254,7 +225,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
254
225
|
* https://msdn.microsoft.com/en-us/library/office/cc842109.aspx
|
|
255
226
|
* @readonly
|
|
256
227
|
* @type {string}
|
|
257
|
-
* @memberof PSTContact
|
|
258
228
|
*/
|
|
259
229
|
get homeFaxNumber(): string;
|
|
260
230
|
/**
|
|
@@ -262,7 +232,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
262
232
|
* https://msdn.microsoft.com/en-us/library/office/cc842494.aspx
|
|
263
233
|
* @readonly
|
|
264
234
|
* @type {string}
|
|
265
|
-
* @memberof PSTContact
|
|
266
235
|
*/
|
|
267
236
|
get businessAddressCountry(): string;
|
|
268
237
|
/**
|
|
@@ -270,7 +239,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
270
239
|
* https://msdn.microsoft.com/en-us/library/office/cc815711.aspx
|
|
271
240
|
* @readonly
|
|
272
241
|
* @type {string}
|
|
273
|
-
* @memberof PSTContact
|
|
274
242
|
*/
|
|
275
243
|
get businessAddressCity(): string;
|
|
276
244
|
/**
|
|
@@ -278,7 +246,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
278
246
|
* https://msdn.microsoft.com/en-us/library/office/cc839544.aspx
|
|
279
247
|
* @readonly
|
|
280
248
|
* @type {string}
|
|
281
|
-
* @memberof PSTContact
|
|
282
249
|
*/
|
|
283
250
|
get businessAddressStateOrProvince(): string;
|
|
284
251
|
/**
|
|
@@ -286,7 +253,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
286
253
|
* https://msdn.microsoft.com/en-us/library/office/cc765810.aspx
|
|
287
254
|
* @readonly
|
|
288
255
|
* @type {string}
|
|
289
|
-
* @memberof PSTContact
|
|
290
256
|
*/
|
|
291
257
|
get businessAddressStreet(): string;
|
|
292
258
|
/**
|
|
@@ -294,7 +260,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
294
260
|
* https://msdn.microsoft.com/en-us/library/office/cc839851.aspx
|
|
295
261
|
* @readonly
|
|
296
262
|
* @type {string}
|
|
297
|
-
* @memberof PSTContact
|
|
298
263
|
*/
|
|
299
264
|
get businessPostalCode(): string;
|
|
300
265
|
/**
|
|
@@ -302,7 +267,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
302
267
|
* https://msdn.microsoft.com/en-us/library/office/cc815522.aspx
|
|
303
268
|
* @readonly
|
|
304
269
|
* @type {string}
|
|
305
|
-
* @memberof PSTContact
|
|
306
270
|
*/
|
|
307
271
|
get businessPoBox(): string;
|
|
308
272
|
/**
|
|
@@ -310,7 +274,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
310
274
|
* https://msdn.microsoft.com/en-us/library/office/cc765894.aspx
|
|
311
275
|
* @readonly
|
|
312
276
|
* @type {string}
|
|
313
|
-
* @memberof PSTContact
|
|
314
277
|
*/
|
|
315
278
|
get telexNumber(): string;
|
|
316
279
|
/**
|
|
@@ -318,7 +281,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
318
281
|
* https://msdn.microsoft.com/en-us/library/office/cc765863.aspx
|
|
319
282
|
* @readonly
|
|
320
283
|
* @type {string}
|
|
321
|
-
* @memberof PSTContact
|
|
322
284
|
*/
|
|
323
285
|
get isdnNumber(): string;
|
|
324
286
|
/**
|
|
@@ -326,7 +288,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
326
288
|
* https://msdn.microsoft.com/en-us/library/office/cc840012.aspx
|
|
327
289
|
* @readonly
|
|
328
290
|
* @type {string}
|
|
329
|
-
* @memberof PSTContact
|
|
330
291
|
*/
|
|
331
292
|
get assistantTelephoneNumber(): string;
|
|
332
293
|
/**
|
|
@@ -334,7 +295,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
334
295
|
* https://msdn.microsoft.com/en-us/library/office/cc815540.aspx
|
|
335
296
|
* @readonly
|
|
336
297
|
* @type {string}
|
|
337
|
-
* @memberof PSTContact
|
|
338
298
|
*/
|
|
339
299
|
get home2TelephoneNumber(): string;
|
|
340
300
|
/**
|
|
@@ -342,7 +302,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
342
302
|
* https://msdn.microsoft.com/en-us/library/office/cc815319.aspx
|
|
343
303
|
* @readonly
|
|
344
304
|
* @type {string}
|
|
345
|
-
* @memberof PSTContact
|
|
346
305
|
*/
|
|
347
306
|
get assistant(): string;
|
|
348
307
|
/**
|
|
@@ -350,7 +309,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
350
309
|
* https://msdn.microsoft.com/en-us/library/office/cc815391.aspx
|
|
351
310
|
* @readonly
|
|
352
311
|
* @type {string}
|
|
353
|
-
* @memberof PSTContact
|
|
354
312
|
*/
|
|
355
313
|
get hobbies(): string;
|
|
356
314
|
/**
|
|
@@ -358,7 +316,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
358
316
|
* https://msdn.microsoft.com/en-us/library/office/cc815329.aspx
|
|
359
317
|
* @readonly
|
|
360
318
|
* @type {string}
|
|
361
|
-
* @memberof PSTContact
|
|
362
319
|
*/
|
|
363
320
|
get middleName(): string;
|
|
364
321
|
/**
|
|
@@ -366,7 +323,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
366
323
|
* https://msdn.microsoft.com/en-us/library/office/cc765538.aspx
|
|
367
324
|
* @readonly
|
|
368
325
|
* @type {string}
|
|
369
|
-
* @memberof PSTContact
|
|
370
326
|
*/
|
|
371
327
|
get displayNamePrefix(): string;
|
|
372
328
|
/**
|
|
@@ -374,7 +330,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
374
330
|
* https://msdn.microsoft.com/en-us/library/office/cc765792.aspx
|
|
375
331
|
* @readonly
|
|
376
332
|
* @type {string}
|
|
377
|
-
* @memberof PSTContact
|
|
378
333
|
*/
|
|
379
334
|
get profession(): string;
|
|
380
335
|
/**
|
|
@@ -382,7 +337,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
382
337
|
* https://msdn.microsoft.com/en-us/library/office/cc765803.aspx
|
|
383
338
|
* @readonly
|
|
384
339
|
* @type {string}
|
|
385
|
-
* @memberof PSTContact
|
|
386
340
|
*/
|
|
387
341
|
get preferredByName(): string;
|
|
388
342
|
/**
|
|
@@ -390,7 +344,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
390
344
|
* https://msdn.microsoft.com/en-us/library/office/cc765832.aspx
|
|
391
345
|
* @readonly
|
|
392
346
|
* @type {string}
|
|
393
|
-
* @memberof PSTContact
|
|
394
347
|
*/
|
|
395
348
|
get spouseName(): string;
|
|
396
349
|
/**
|
|
@@ -398,7 +351,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
398
351
|
* https://msdn.microsoft.com/en-us/library/office/cc839633.aspx
|
|
399
352
|
* @readonly
|
|
400
353
|
* @type {string}
|
|
401
|
-
* @memberof PSTContact
|
|
402
354
|
*/
|
|
403
355
|
get computerNetworkName(): string;
|
|
404
356
|
/**
|
|
@@ -406,7 +358,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
406
358
|
* https://msdn.microsoft.com/en-us/library/office/cc842178.aspx
|
|
407
359
|
* @readonly
|
|
408
360
|
* @type {string}
|
|
409
|
-
* @memberof PSTContact
|
|
410
361
|
*/
|
|
411
362
|
get customerId(): string;
|
|
412
363
|
/**
|
|
@@ -414,7 +365,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
414
365
|
* https://msdn.microsoft.com/en-us/library/office/cc765580.aspx
|
|
415
366
|
* @readonly
|
|
416
367
|
* @type {string}
|
|
417
|
-
* @memberof PSTContact
|
|
418
368
|
*/
|
|
419
369
|
get ttytddPhoneNumber(): string;
|
|
420
370
|
/**
|
|
@@ -422,7 +372,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
422
372
|
* https://msdn.microsoft.com/en-us/library/office/cc839830.aspx
|
|
423
373
|
* @readonly
|
|
424
374
|
* @type {string}
|
|
425
|
-
* @memberof PSTContact
|
|
426
375
|
*/
|
|
427
376
|
get ftpSite(): string;
|
|
428
377
|
/**
|
|
@@ -430,7 +379,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
430
379
|
* https://msdn.microsoft.com/en-us/library/office/cc842009.aspx
|
|
431
380
|
* @readonly
|
|
432
381
|
* @type {string}
|
|
433
|
-
* @memberof PSTContact
|
|
434
382
|
*/
|
|
435
383
|
get managerName(): string;
|
|
436
384
|
/**
|
|
@@ -438,7 +386,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
438
386
|
* https://msdn.microsoft.com/en-us/library/office/cc765603.aspx
|
|
439
387
|
* @readonly
|
|
440
388
|
* @type {string}
|
|
441
|
-
* @memberof PSTContact
|
|
442
389
|
*/
|
|
443
390
|
get nickname(): string;
|
|
444
391
|
/**
|
|
@@ -446,7 +393,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
446
393
|
* https://msdn.microsoft.com/en-us/library/office/cc765751.aspx
|
|
447
394
|
* @readonly
|
|
448
395
|
* @type {string}
|
|
449
|
-
* @memberof PSTContact
|
|
450
396
|
*/
|
|
451
397
|
get personalHomePage(): string;
|
|
452
398
|
/**
|
|
@@ -454,21 +400,18 @@ export declare class PSTContact extends PSTMessage {
|
|
|
454
400
|
* https://msdn.microsoft.com/en-us/library/office/cc842385.aspx
|
|
455
401
|
* @readonly
|
|
456
402
|
* @type {string}
|
|
457
|
-
* @memberof PSTContact
|
|
458
403
|
*/
|
|
459
404
|
get businessHomePage(): string;
|
|
460
405
|
/**
|
|
461
406
|
* Get the note associated with the contact.
|
|
462
407
|
* @readonly
|
|
463
408
|
* @type {string}
|
|
464
|
-
* @memberof PSTContact
|
|
465
409
|
*/
|
|
466
410
|
get note(): string;
|
|
467
411
|
/**
|
|
468
412
|
* Get a named string item from the map
|
|
469
413
|
* @param {number} key
|
|
470
414
|
* @returns {string}
|
|
471
|
-
* @memberof PSTContact
|
|
472
415
|
*/
|
|
473
416
|
getNamedStringItem(key: number): string;
|
|
474
417
|
/**
|
|
@@ -476,7 +419,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
476
419
|
* https://msdn.microsoft.com/en-us/library/office/cc839651.aspx
|
|
477
420
|
* @readonly
|
|
478
421
|
* @type {string}
|
|
479
|
-
* @memberof PSTContact
|
|
480
422
|
*/
|
|
481
423
|
get companyMainPhoneNumber(): string;
|
|
482
424
|
/**
|
|
@@ -484,7 +426,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
484
426
|
* https://msdn.microsoft.com/en-us/library/office/cc839533.aspx
|
|
485
427
|
* @readonly
|
|
486
428
|
* @type {string}
|
|
487
|
-
* @memberof PSTContact
|
|
488
429
|
*/
|
|
489
430
|
get childrensNames(): string;
|
|
490
431
|
/**
|
|
@@ -492,7 +433,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
492
433
|
* https://msdn.microsoft.com/en-us/library/office/cc815582.aspx
|
|
493
434
|
* @readonly
|
|
494
435
|
* @type {string}
|
|
495
|
-
* @memberof PSTContact
|
|
496
436
|
*/
|
|
497
437
|
get homeAddressCity(): string;
|
|
498
438
|
/**
|
|
@@ -500,7 +440,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
500
440
|
* https://msdn.microsoft.com/en-us/library/office/cc842548.aspx
|
|
501
441
|
* @readonly
|
|
502
442
|
* @type {string}
|
|
503
|
-
* @memberof PSTContact
|
|
504
443
|
*/
|
|
505
444
|
get homeAddressCountry(): string;
|
|
506
445
|
/**
|
|
@@ -508,7 +447,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
508
447
|
* https://msdn.microsoft.com/en-us/library/office/cc815880.aspx
|
|
509
448
|
* @readonly
|
|
510
449
|
* @type {string}
|
|
511
|
-
* @memberof PSTContact
|
|
512
450
|
*/
|
|
513
451
|
get homeAddressPostalCode(): string;
|
|
514
452
|
/**
|
|
@@ -516,7 +454,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
516
454
|
* https://msdn.microsoft.com/en-us/library/office/cc839958.aspx
|
|
517
455
|
* @readonly
|
|
518
456
|
* @type {string}
|
|
519
|
-
* @memberof PSTContact
|
|
520
457
|
*/
|
|
521
458
|
get homeAddressStateOrProvince(): string;
|
|
522
459
|
/**
|
|
@@ -524,7 +461,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
524
461
|
* https://msdn.microsoft.com/en-us/library/office/cc841997.aspx
|
|
525
462
|
* @readonly
|
|
526
463
|
* @type {string}
|
|
527
|
-
* @memberof PSTContact
|
|
528
464
|
*/
|
|
529
465
|
get homeAddressStreet(): string;
|
|
530
466
|
/**
|
|
@@ -532,7 +468,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
532
468
|
* https://msdn.microsoft.com/en-us/library/office/cc842440.aspx
|
|
533
469
|
* @readonly
|
|
534
470
|
* @type {string}
|
|
535
|
-
* @memberof PSTContact
|
|
536
471
|
*/
|
|
537
472
|
get homeAddressPostOfficeBox(): string;
|
|
538
473
|
/**
|
|
@@ -540,7 +475,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
540
475
|
* https://msdn.microsoft.com/en-us/library/office/cc765881.aspx
|
|
541
476
|
* @readonly
|
|
542
477
|
* @type {string}
|
|
543
|
-
* @memberof PSTContact
|
|
544
478
|
*/
|
|
545
479
|
get otherAddressCity(): string;
|
|
546
480
|
/**
|
|
@@ -548,7 +482,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
548
482
|
* https://msdn.microsoft.com/en-us/library/office/cc765814.aspx
|
|
549
483
|
* @readonly
|
|
550
484
|
* @type {string}
|
|
551
|
-
* @memberof PSTContact
|
|
552
485
|
*/
|
|
553
486
|
get otherAddressCountry(): string;
|
|
554
487
|
/**
|
|
@@ -556,7 +489,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
556
489
|
* https://msdn.microsoft.com/en-us/library/office/cc842261.aspx
|
|
557
490
|
* @readonly
|
|
558
491
|
* @type {string}
|
|
559
|
-
* @memberof PSTContact
|
|
560
492
|
*/
|
|
561
493
|
get otherAddressPostalCode(): string;
|
|
562
494
|
/**
|
|
@@ -564,7 +496,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
564
496
|
* https://msdn.microsoft.com/en-us/library/office/cc815782.aspx
|
|
565
497
|
* @readonly
|
|
566
498
|
* @type {string}
|
|
567
|
-
* @memberof PSTContact
|
|
568
499
|
*/
|
|
569
500
|
get otherAddressStateOrProvince(): string;
|
|
570
501
|
/**
|
|
@@ -572,7 +503,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
572
503
|
* https://msdn.microsoft.com/en-us/library/office/cc839546.aspx
|
|
573
504
|
* @readonly
|
|
574
505
|
* @type {string}
|
|
575
|
-
* @memberof PSTContact
|
|
576
506
|
*/
|
|
577
507
|
get otherAddressStreet(): string;
|
|
578
508
|
/**
|
|
@@ -580,7 +510,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
580
510
|
* https://msdn.microsoft.com/en-us/library/office/cc842396.aspx
|
|
581
511
|
* @readonly
|
|
582
512
|
* @type {string}
|
|
583
|
-
* @memberof PSTContact
|
|
584
513
|
*/
|
|
585
514
|
get otherAddressPostOfficeBox(): string;
|
|
586
515
|
/**
|
|
@@ -588,7 +517,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
588
517
|
* https://msdn.microsoft.com/en-us/library/office/cc842002.aspx
|
|
589
518
|
* @readonly
|
|
590
519
|
* @type {string}
|
|
591
|
-
* @memberof PSTContact
|
|
592
520
|
*/
|
|
593
521
|
get fileUnder(): string;
|
|
594
522
|
/**
|
|
@@ -596,7 +524,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
596
524
|
* https://msdn.microsoft.com/en-us/library/office/cc839539.aspx
|
|
597
525
|
* @readonly
|
|
598
526
|
* @type {string}
|
|
599
|
-
* @memberof PSTContact
|
|
600
527
|
*/
|
|
601
528
|
get homeAddress(): string;
|
|
602
529
|
/**
|
|
@@ -604,7 +531,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
604
531
|
* https://msdn.microsoft.com/en-us/library/office/cc815905.aspx
|
|
605
532
|
* @readonly
|
|
606
533
|
* @type {string}
|
|
607
|
-
* @memberof PSTContact
|
|
608
534
|
*/
|
|
609
535
|
get workAddress(): string;
|
|
610
536
|
/**
|
|
@@ -612,7 +538,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
612
538
|
* https://msdn.microsoft.com/en-us/library/office/cc815383.aspx
|
|
613
539
|
* @readonly
|
|
614
540
|
* @type {string}
|
|
615
|
-
* @memberof PSTContact
|
|
616
541
|
*/
|
|
617
542
|
get otherAddress(): string;
|
|
618
543
|
/**
|
|
@@ -620,7 +545,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
620
545
|
* https://msdn.microsoft.com/en-us/library/office/cc815430.aspx
|
|
621
546
|
* @readonly
|
|
622
547
|
* @type {number}
|
|
623
|
-
* @memberof PSTContact
|
|
624
548
|
*/
|
|
625
549
|
get postalAddressId(): number;
|
|
626
550
|
/**
|
|
@@ -628,7 +552,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
628
552
|
* https://msdn.microsoft.com/en-us/library/office/cc842001.aspx
|
|
629
553
|
* @readonly
|
|
630
554
|
* @type {string}
|
|
631
|
-
* @memberof PSTContact
|
|
632
555
|
*/
|
|
633
556
|
get html(): string;
|
|
634
557
|
/**
|
|
@@ -636,7 +559,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
636
559
|
* https://msdn.microsoft.com/en-us/library/office/cc815537.aspx
|
|
637
560
|
* @readonly
|
|
638
561
|
* @type {string}
|
|
639
|
-
* @memberof PSTContact
|
|
640
562
|
*/
|
|
641
563
|
get workAddressStreet(): string;
|
|
642
564
|
/**
|
|
@@ -644,7 +566,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
644
566
|
* https://msdn.microsoft.com/en-us/library/office/cc765923.aspx
|
|
645
567
|
* @readonly
|
|
646
568
|
* @type {string}
|
|
647
|
-
* @memberof PSTContact
|
|
648
569
|
*/
|
|
649
570
|
get workAddressCity(): string;
|
|
650
571
|
/**
|
|
@@ -652,7 +573,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
652
573
|
* https://msdn.microsoft.com/en-us/library/office/cc842152.aspx
|
|
653
574
|
* @readonly
|
|
654
575
|
* @type {string}
|
|
655
|
-
* @memberof PSTContact
|
|
656
576
|
*/
|
|
657
577
|
get workAddressState(): string;
|
|
658
578
|
/**
|
|
@@ -660,7 +580,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
660
580
|
* https://msdn.microsoft.com/en-us/library/office/cc842066.aspx
|
|
661
581
|
* @readonly
|
|
662
582
|
* @type {string}
|
|
663
|
-
* @memberof PSTContact
|
|
664
583
|
*/
|
|
665
584
|
get workAddressPostalCode(): string;
|
|
666
585
|
/**
|
|
@@ -668,7 +587,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
668
587
|
* https://msdn.microsoft.com/en-us/library/office/cc765698.aspx
|
|
669
588
|
* @readonly
|
|
670
589
|
* @type {string}
|
|
671
|
-
* @memberof PSTContact
|
|
672
590
|
*/
|
|
673
591
|
get workAddressCountry(): string;
|
|
674
592
|
/**
|
|
@@ -676,7 +594,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
676
594
|
* https://msdn.microsoft.com/en-us/library/office/cc815563.aspx
|
|
677
595
|
* @readonly
|
|
678
596
|
* @type {string}
|
|
679
|
-
* @memberof PSTContact
|
|
680
597
|
*/
|
|
681
598
|
get workAddressPostOfficeBox(): string;
|
|
682
599
|
/**
|
|
@@ -684,7 +601,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
684
601
|
* https://msdn.microsoft.com/en-us/library/office/cc815607.aspx
|
|
685
602
|
* @readonly
|
|
686
603
|
* @type {string}
|
|
687
|
-
* @memberof PSTContact
|
|
688
604
|
*/
|
|
689
605
|
get instantMessagingAddress(): string;
|
|
690
606
|
/**
|
|
@@ -692,7 +608,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
692
608
|
* https://msdn.microsoft.com/en-us/library/office/cc815460.aspx
|
|
693
609
|
* @readonly
|
|
694
610
|
* @type {string}
|
|
695
|
-
* @memberof PSTContact
|
|
696
611
|
*/
|
|
697
612
|
get email1DisplayName(): string;
|
|
698
613
|
/**
|
|
@@ -700,7 +615,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
700
615
|
* https://msdn.microsoft.com/en-us/library/office/cc815570.aspx
|
|
701
616
|
* @readonly
|
|
702
617
|
* @type {string}
|
|
703
|
-
* @memberof PSTContact
|
|
704
618
|
*/
|
|
705
619
|
get email1AddressType(): string;
|
|
706
620
|
/**
|
|
@@ -708,7 +622,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
708
622
|
* https://msdn.microsoft.com/en-us/library/office/cc842050.aspx
|
|
709
623
|
* @readonly
|
|
710
624
|
* @type {string}
|
|
711
|
-
* @memberof PSTContact
|
|
712
625
|
*/
|
|
713
626
|
get email1EmailAddress(): string;
|
|
714
627
|
/**
|
|
@@ -716,7 +629,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
716
629
|
* https://msdn.microsoft.com/en-us/library/office/cc815564.aspx
|
|
717
630
|
* @readonly
|
|
718
631
|
* @type {string}
|
|
719
|
-
* @memberof PSTContact
|
|
720
632
|
*/
|
|
721
633
|
get email1OriginalDisplayName(): string;
|
|
722
634
|
/**
|
|
@@ -724,7 +636,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
724
636
|
* https://msdn.microsoft.com/en-us/library/office/cc839675.aspx
|
|
725
637
|
* @readonly
|
|
726
638
|
* @type {string}
|
|
727
|
-
* @memberof PSTContact
|
|
728
639
|
*/
|
|
729
640
|
get email2DisplayName(): string;
|
|
730
641
|
/**
|
|
@@ -732,7 +643,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
732
643
|
* https://msdn.microsoft.com/en-us/library/office/cc815361.aspx
|
|
733
644
|
* @readonly
|
|
734
645
|
* @type {string}
|
|
735
|
-
* @memberof PSTContact
|
|
736
646
|
*/
|
|
737
647
|
get email2AddressType(): string;
|
|
738
648
|
/**
|
|
@@ -740,7 +650,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
740
650
|
* https://msdn.microsoft.com/en-us/library/office/cc842205.aspx
|
|
741
651
|
* @readonly
|
|
742
652
|
* @type {string}
|
|
743
|
-
* @memberof PSTContact
|
|
744
653
|
*/
|
|
745
654
|
get email2EmailAddress(): string;
|
|
746
655
|
/**
|
|
@@ -748,7 +657,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
748
657
|
* https://msdn.microsoft.com/en-us/library/office/cc765618.aspx
|
|
749
658
|
* @readonly
|
|
750
659
|
* @type {string}
|
|
751
|
-
* @memberof PSTContact
|
|
752
660
|
*/
|
|
753
661
|
get email2OriginalDisplayName(): string;
|
|
754
662
|
/**
|
|
@@ -756,7 +664,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
756
664
|
* https://msdn.microsoft.com/en-us/library/office/cc815669.aspx
|
|
757
665
|
* @readonly
|
|
758
666
|
* @type {string}
|
|
759
|
-
* @memberof PSTContact
|
|
760
667
|
*/
|
|
761
668
|
get email3DisplayName(): string;
|
|
762
669
|
/**
|
|
@@ -764,7 +671,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
764
671
|
* https://msdn.microsoft.com/en-us/library/office/cc842438.aspx
|
|
765
672
|
* @readonly
|
|
766
673
|
* @type {string}
|
|
767
|
-
* @memberof PSTContact
|
|
768
674
|
*/
|
|
769
675
|
get email3AddressType(): string;
|
|
770
676
|
/**
|
|
@@ -772,7 +678,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
772
678
|
* https://msdn.microsoft.com/en-us/library/office/cc815504.aspx
|
|
773
679
|
* @readonly
|
|
774
680
|
* @type {string}
|
|
775
|
-
* @memberof PSTContact
|
|
776
681
|
*/
|
|
777
682
|
get email3EmailAddress(): string;
|
|
778
683
|
/**
|
|
@@ -780,7 +685,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
780
685
|
* https://msdn.microsoft.com/en-us/library/office/cc815833.aspx
|
|
781
686
|
* @readonly
|
|
782
687
|
* @type {string}
|
|
783
|
-
* @memberof PSTContact
|
|
784
688
|
*/
|
|
785
689
|
get email3OriginalDisplayName(): string;
|
|
786
690
|
/**
|
|
@@ -788,7 +692,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
788
692
|
* https://msdn.microsoft.com/en-us/library/office/cc842026.aspx
|
|
789
693
|
* @readonly
|
|
790
694
|
* @type {string}
|
|
791
|
-
* @memberof PSTContact
|
|
792
695
|
*/
|
|
793
696
|
get fax1AddressType(): string;
|
|
794
697
|
/**
|
|
@@ -796,7 +699,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
796
699
|
* https://msdn.microsoft.com/en-us/library/office/cc765813.aspx
|
|
797
700
|
* @readonly
|
|
798
701
|
* @type {string}
|
|
799
|
-
* @memberof PSTContact
|
|
800
702
|
*/
|
|
801
703
|
get fax1EmailAddress(): string;
|
|
802
704
|
/**
|
|
@@ -804,7 +706,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
804
706
|
* https://msdn.microsoft.com/en-us/library/office/cc765694.aspx
|
|
805
707
|
* @readonly
|
|
806
708
|
* @type {string}
|
|
807
|
-
* @memberof PSTContact
|
|
808
709
|
*/
|
|
809
710
|
get fax1OriginalDisplayName(): string;
|
|
810
711
|
/**
|
|
@@ -812,7 +713,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
812
713
|
* https://msdn.microsoft.com/en-us/library/office/cc839741.aspx
|
|
813
714
|
* @readonly
|
|
814
715
|
* @type {string}
|
|
815
|
-
* @memberof PSTContact
|
|
816
716
|
*/
|
|
817
717
|
get fax2AddressType(): string;
|
|
818
718
|
/**
|
|
@@ -820,7 +720,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
820
720
|
* https://msdn.microsoft.com/en-us/library/office/cc765668.aspx
|
|
821
721
|
* @readonly
|
|
822
722
|
* @type {string}
|
|
823
|
-
* @memberof PSTContact
|
|
824
723
|
*/
|
|
825
724
|
get fax2EmailAddress(): string;
|
|
826
725
|
/**
|
|
@@ -828,7 +727,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
828
727
|
* https://msdn.microsoft.com/en-us/library/office/cc842101.aspx
|
|
829
728
|
* @readonly
|
|
830
729
|
* @type {string}
|
|
831
|
-
* @memberof PSTContact
|
|
832
730
|
*/
|
|
833
731
|
get fax2OriginalDisplayName(): string;
|
|
834
732
|
/**
|
|
@@ -836,7 +734,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
836
734
|
* https://msdn.microsoft.com/en-us/library/office/cc839752.aspx
|
|
837
735
|
* @readonly
|
|
838
736
|
* @type {string}
|
|
839
|
-
* @memberof PSTContact
|
|
840
737
|
*/
|
|
841
738
|
get fax3AddressType(): string;
|
|
842
739
|
/**
|
|
@@ -844,7 +741,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
844
741
|
* https://msdn.microsoft.com/en-us/library/office/cc842217.aspx
|
|
845
742
|
* @readonly
|
|
846
743
|
* @type {string}
|
|
847
|
-
* @memberof PSTContact
|
|
848
744
|
*/
|
|
849
745
|
get fax3EmailAddress(): string;
|
|
850
746
|
/**
|
|
@@ -852,7 +748,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
852
748
|
* https://msdn.microsoft.com/en-us/library/office/cc765682.aspx
|
|
853
749
|
* @readonly
|
|
854
750
|
* @type {string}
|
|
855
|
-
* @memberof PSTContact
|
|
856
751
|
*/
|
|
857
752
|
get fax3OriginalDisplayName(): string;
|
|
858
753
|
/**
|
|
@@ -860,7 +755,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
860
755
|
* https://msdn.microsoft.com/en-us/library/office/cc765766.aspx
|
|
861
756
|
* @readonly
|
|
862
757
|
* @type {string}
|
|
863
|
-
* @memberof PSTContact
|
|
864
758
|
*/
|
|
865
759
|
get freeBusyLocation(): string;
|
|
866
760
|
/**
|
|
@@ -868,7 +762,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
868
762
|
* https://msdn.microsoft.com/en-us/library/office/cc842301.aspx
|
|
869
763
|
* @readonly
|
|
870
764
|
* @type {Date}
|
|
871
|
-
* @memberof PSTContact
|
|
872
765
|
*/
|
|
873
766
|
get birthday(): Date | null;
|
|
874
767
|
/**
|
|
@@ -876,7 +769,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
876
769
|
* https://msdn.microsoft.com/en-us/library/office/cc842132.aspx
|
|
877
770
|
* @readonly
|
|
878
771
|
* @type {Date}
|
|
879
|
-
* @memberof PSTContact
|
|
880
772
|
*/
|
|
881
773
|
get anniversary(): Date | null;
|
|
882
774
|
/**
|
|
@@ -894,7 +786,6 @@ export declare class PSTContact extends PSTMessage {
|
|
|
894
786
|
/**
|
|
895
787
|
* JSON stringify the object properties.
|
|
896
788
|
* @returns {string}
|
|
897
|
-
* @memberof PSTContact
|
|
898
789
|
*/
|
|
899
790
|
toJSON(): any;
|
|
900
791
|
}
|