NeahStable/types/vcard-parser.d.ts
2026-01-09 21:06:52 +01:00

4 lines
125 B
TypeScript

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