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) 478 B
import { IntegerType } from "../values/index"; import { BaseParameter } from "./BaseParameter"; /** * Represents the "INDEX" parameter * When a property is multi-valued, "INDEX" can be used to indicate an ordering * or sequence of the values */ export class IndexParameter extends BaseParameter { /** * @param indexValue - the value of the `IntegerType` instance should be * greater than or equal to 1 */ constructor(indexValue: IntegerType); }