UNPKG

url-metadata-parser

Version:

Request an http(s) url and scrape its metadata

9 lines (8 loc) 293 B
import { Metatag } from './metatag'; export declare class MetaEntity { tags: Metatag[]; constructor(tags: Metatag[]); getContentByPropertyName(propertyName: string): string | null; getContentByName(name: string): string | null; getNameByContent(content: string): string; }