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) 618 B
import { BaseParameter } from './BaseParameter.js'; import { ParameterValueType } from '../values/ParameterValueType.js'; import '../values/BaseValue.js'; /** * Represents the "CALSCALE" parameter * Used to define the calendar system in which a "date" or "date-time" value is * expressed. */ declare class CalscaleParameter extends BaseParameter { /** * @param calscaleValue - the value of the `ParameterValueType` instance should be * either "gregorian" or an x-name (a name beginning with "X-" or "x-") */ constructor(calscaleValue: ParameterValueType); } export { CalscaleParameter };