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.
20 lines (17 loc) • 649 B
TypeScript
import { BaseParameter } from './BaseParameter.js';
import { ParameterValueType } from '../values/ParameterValueType.js';
import { URIType } from '../values/URIType.js';
import { DateTimeType } from '../values/DateTimeType.js';
import '../values/BaseValue.js';
/**
* Represents the "TZ" parameter
* Used to indicate time zone information that is specific to an address
*/
declare class TzParameter extends BaseParameter {
/**
* @param tzValue - when the value is an instance of `DateTimeType`, its type
* must be "utcoffset"
*/
constructor(tzValue: ParameterValueType | URIType | DateTimeType);
}
export { TzParameter };