@juzi/wechaty-puppet-whatsapp
Version:
Wechaty Puppet for WhatsApp
28 lines • 476 B
TypeScript
export interface IVcard {
/**
* VERSION: X.X
*/
version: string;
/**
* N, name
*/
N?: string[];
/**
* FN, Full name
*/
FN?: string;
/**
* item1.TEL field
*/
TEL?: {
waid: string;
phone: string;
}[];
[k: string]: any;
}
/**
* parse vcard body
* @param body vcard body string
*/
export declare function parseVcard(body: string): IVcard;
//# sourceMappingURL=vcard-parser.d.ts.map