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.

16 lines (14 loc) 489 B
import { URIType } from "../values/index"; import { BaseParameter } from "./BaseParameter"; /** * Represents the "GEO" parameter * Used to specify information related to the global positioning of the object * the vCard represents. */ export class GeoParameter extends BaseParameter { /** * @param geoValue - The "geo" URI scheme [RFC5870] is particularly well * suited for this property, but other schemes may be used. */ constructor(geoValue: URIType); }