UNPKG

vcard4

Version:

An RFC 6350 compliant JavaScript library for generating and parsing version 4.0 vCards. Can also generate RFC 6351 compliant XML vCards and RFC 7095 compliant jCards. TypeScript type declarations are provided.

18 lines (16 loc) 423 B
import { BaseValue } from "./BaseValue"; /** * Represents the "uri" data type */ export class URIType extends BaseValue { reprJSON(): [string, string]; /** * @param uriValue - Should be formatted as a URI as defined in Section 3 of * RFC 3986 * * @example * http://www.example.com/my/picture.jpg * ldap://ldap.example.com/cn=babs%20jensen */ constructor(uriValue: string); }