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 (15 loc) 532 B
import { BaseParameter } from './BaseParameter.js'; import { ParameterValueType } from '../values/ParameterValueType.js'; import '../values/BaseValue.js'; /** * For creating extended parameters */ declare class AnyParameter extends BaseParameter { /** * @param param - name of the extended parameter. An x-name * (name beginning with "X-" or "x-") * @param value - an instance of any of the property value data types */ constructor(param: string, value: ParameterValueType); } export { AnyParameter };