NeahNew/types/vcard-parser.d.ts
2025-05-04 14:27:24 +02:00

4 lines
125 B
TypeScript

declare module 'vcard-parser' {
export function parse(vcard: string): any;
export function format(vcard: any): string;
}