VCardList: (VCardListProperty<begin, "VCARD", {}> | VCardListProperty<end, "VCARD", {}> | VCardListProperty<source, SoundPropertyValue, SourcePropertyParameters> | VCardListProperty<kind, KindPropertyValue, KindPropertyParameters> | VCardListProperty<xml, XmlPropertyValue, XmlPropertyParameters> | VCardListProperty<fullName, FullNamePropertyValue, FullNamePropertyParameters> | VCardListProperty<name, NamePropertyValue, NamePropertyParameters> | VCardListProperty<nickName, NickNamePropertyValue, NickNamePropertyParameters> | VCardListProperty<photo, PhotoPropertyValue, PhotoPropertyParameters> | VCardListProperty<birthday, BirthdayPropertyValue, BirthdayPropertyParameters> | VCardListProperty<anniversary, AnniversaryPropertyValue, AnniversaryPropertyParameters> | VCardListProperty<gender, GenderPropertyValue, GenderPropertyParameters> | VCardListProperty<address, AddressPropertyValue, AddressPropertyParameters> | VCardListProperty<tel, TelPropertyValue, TelPropertyParameters> | VCardListProperty<email, EmailPropertyValue, EmailPropertyParameters> | VCardListProperty<impp, ImppPropertyValue, ImppPropertyParameters> | VCardListProperty<language, LanguagePropertyValue, LanguagePropertyParameters> | VCardListProperty<timezone, TimezonePropertyValue, TimezonePropertyParameters> | VCardListProperty<geoLocation, GeoLocationPropertyValue, GeoLocationPropertyParameters> | VCardListProperty<title, TitlePropertyValue, TitlePropertyParameters> | VCardListProperty<role, RolePropertyValue, RolePropertyParameters> | VCardListProperty<logo, LogoPropertyValue, LogoPropertyParameters> | VCardListProperty<organization, OrganizationPropertyValue, OrganizationPropertyParameters> | VCardListProperty<related, RelatedPropertyValue, RelatedPropertyParameters> | VCardListProperty<categories, CategoriesPropertyValue, CategoriesPropertyParameters> | VCardListProperty<note, NotePropertyValue, NotePropertyParameters> | VCardListProperty<productId, ProductIdPropertyValue, ProductIdPropertyParameters> | VCardListProperty<revision, RevisionPropertyValue, RevisionPropertyParameters> | VCardListProperty<sound, SoundPropertyValue, SoundPropertyParameters> | VCardListProperty<clientPidMap, ClientPidMapPropertyValue, ClientPIdMapPropertyParameters> | { parameters?: ClientPIdMapPropertyParameters; property: clientPidMap; value: ClientPidMapDictionary } | VCardListProperty<url, UrlPropertyValue, UrlPropertyParameters> | VCardListProperty<version, VersionPropertyValue, VersionPropertyParameters> | VCardListProperty<key, KeyPropertyValue, KeyPropertyParameters> | VCardListProperty<fbUrl, FbUrlPropertyValue, FbUrlPropertyParameters> | VCardListProperty<calendarUri, CalendarAddressUriPropertyValue, CalendarAddressUriPropertyParameters> | VCardListProperty<calendarUri, CalendarUriPropertyValue, CalendarUriPropertyParameters> | VCardListProperty<birthPlace, BirthPlacePropertyValue, BirthPlacePropertyParameters> | VCardListProperty<deathPlace, DeathPlacePropertyValue, DeathDatePropertyParameters> | VCardListProperty<deathDate, DeathDatePropertyValue, DeathDatePropertyParameters> | VCardListProperty<expertise, ExpertisePropertyValue, ExpertisePropertyParameters> | VCardListProperty<hobby, HobbyPropertyValue, HobbyPropertyParameters> | VCardListProperty<interest, InterestPropertyValue, InterestPropertyParameters> | VCardListProperty<orgDirectory, OrgDirectoryPropertyValue, OrgDirectoryPropertyParameters> | VCardListProperty<contactUri, ContactUriPropertyValue, ContactUriPropertyParameters> | VCardListProperty<XName, PropertyValue, PropertyParameters> | VCardListProperty<socialProfile, SocialProfilePropertyValue, SocialProfilePropertyParameters> | VCardListProperty<openId, OpenIdPropertyValue, OpenIdPropertyParameters> | VCardListProperty<album, AlbumPropertyValue, AlbumPropertyParameters> | VCardListProperty<depiction, DepictionPropertyValue, DepictionPropertyParameters> | VCardListProperty<socialCode, SocialCodePropertyValue, SocialCodePropertyParameters> | VCardListProperty<abLabel, ABLabelPropertyValue, ABLabelPropertyParameters>)[]

vCard definition in form of an array of vCard properties

Example

generateVCard([
{ property: PropertyName.kind, value: Kind.Individual },
{ property: PropertyName.fullName, value: "Jane Doe" },
{ property: PropertyName.name, value: { familyName: "Doe", name: "John" } },
{ property: PropertyName.email, value: "john@doe.com" },
{ property: PropertyName.tel, value: "123456789", parameters: { type: "home" } },
{ property: PropertyName.tel, value: "987654321", parameters: { type: "work" } },
]);

Generated using TypeDoc