UNPKG

node-meta-parser

Version:

Get Open Graph and other metadata from a webpage.

6 lines (5 loc) 214 B
export interface Metadata { [key: string]: string; } export declare const parseMetadata: (html: string, properties: string[]) => Metadata; export declare const getFavicon: (html: string) => string | undefined;