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.
16 lines (14 loc) • 482 B
TypeScript
import { BaseParameter } from "./BaseParameter";
/**
* Represents the "LABEL" parameter
* For use with "ADR" property to present a delivery address label for the
* address.
*/
export class LabelParameter extends BaseParameter {
/**
* @param value - plain-text string representing the formatted address.
* @example
* "Mr. John Q. Public, Esq.\nMail Drop: TNE QB\n123 Main Street\nAny Town, CA 91921-1234\nU.S.A."
*/
constructor(value: string);
}