4 lines
125 B
TypeScript
4 lines
125 B
TypeScript
declare module 'vcard-parser' {
|
|
export function parse(vcard: string): any;
|
|
export function format(vcard: any): string;
|
|
}
|