blob: 2e2947ccd44573eb2058cad1e48ae8c383375312 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import type { OpenGraphScraperOptions } from './types';
/**
* sets up options for the got request and calls extract on html
*
* @param {object} options - options for ogs
* @return {object} object with ogs results
*
*/
export default function setOptionsAndReturnOpenGraphResults(options: OpenGraphScraperOptions): Promise<{
ogObject: import("./types").OgObject;
response: any;
}>;
|