UNPKG

ogp-parser

Version:

This Package is Open Graph Parser.

11 lines (10 loc) 260 B
export type ParseResult = { title: string; ogp: Record<string, string[]>; seo: Record<string, string[]>; oembedInfo?: { type: 'json' | 'xml'; url: string; }; }; export declare const parseHtml: (html: string) => ParseResult;