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) • 400 B
TypeScript
declare class BaseValue {
/**
* @returns Representation of how the value type will appear in the vCard.
*/
repr(): string;
/**
* @returns Representation of how the value type will appear in the XML
* vCard.
*/
reprXML(): string;
/**
* @returns Representation of how the value type will appear in the jCard.
*/
reprJSON(): {}[];
}
export { BaseValue };