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.
15 lines (13 loc) • 420 B
TypeScript
import { BaseValue } from "./BaseValue";
/**
* For use with the {@link GenderProperty}
*/
export class SexType extends BaseValue {
reprJSON(): [string, string];
/**
* @param sexValue - "M" stands for "male", "F" stands for "female", "O"
* stands for "other", "N" stands for "none or not applicable", "U" stands
* for "unknown".
*/
constructor(sexValue: "M" | "F" | "O" | "N" | "U");
}