-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathvcard.ts
More file actions
18 lines (18 loc) · 904 Bytes
/
vcard.ts
File metadata and controls
18 lines (18 loc) · 904 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
export const VCARD = {
fn: "http://www.w3.org/2006/vcard/ns#fn",
Email: "http://www.w3.org/2006/vcard/ns#Email",
email: "http://www.w3.org/2006/vcard/ns#email",
hasEmail: "http://www.w3.org/2006/vcard/ns#hasEmail",
hasMember: "http://www.w3.org/2006/vcard/ns#hasMember",
hasValue: "http://www.w3.org/2006/vcard/ns#hasValue",
hasPhoto: "http://www.w3.org/2006/vcard/ns#hasPhoto",
tel: "http://www.w3.org/2006/vcard/ns#tel",
hasTelephone: "http://www.w3.org/2006/vcard/ns#hasTelephone",
title: "http://www.w3.org/2006/vcard/ns#title",
hasUrl: "http://www.w3.org/2006/vcard/ns#hasUrl",
organizationName: "http://www.w3.org/2006/vcard/ns#organization-name",
phone: "http://www.w3.org/2006/vcard/ns#phone",
role: "http://www.w3.org/2006/vcard/ns#role",
value: "http://www.w3.org/2006/vcard/ns#value",
telephoneType: "http://www.w3.org/2006/vcard/ns#TelephoneType",
} as const;