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) • 477 B
TypeScript
import { DateTimeType } from "./DateTimeType";
import { BaseValue } from "./BaseValue";
/**
* Represents the "date-list", "time-list", "date-time-list",
* "date-and-or-time-list" and "timestamp-list" data types
*/
export class DateTimeListType extends BaseValue {
reprJSON(): string[];
/**
* @param datetimelist - The {@link DateTimeType} instances should all be of the same
* type, e.g. "date"
*/
constructor(datetimelist: DateTimeType[]);
}