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.

15 lines (14 loc) 398 B
export class BaseParameter { /** * @returns Representation of how the parameter will appear in the vCard */ repr(): string; /** * @returns Representation of how the parameter will appear in the XML vCard */ reprXML(): string; /** * @returns Representation of how the parameter will appear in the jCard */ reprJSON(): Record<string, string | string[]>; }