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.

19 lines (16 loc) 649 B
import { BaseParameter } from './BaseParameter.js'; import { IntegerType } from '../values/IntegerType.js'; import '../values/BaseValue.js'; /** * Represents the "PID" parameter * Used to identify a specific property among multiple instances. */ declare class PIDParameter extends BaseParameter { /** * @see For comprehensive usage explanation and examples, see the documentation * {@link https://kelseykm.github.io/vcard4/documentation/parameters/pidparameter} */ constructor(pidValue: IntegerType | IntegerType[] | IntegerType[][]); constructor(pidValue: (IntegerType | IntegerType[])[]); } export { PIDParameter };