blob: b349e24d786ef0caaa83f44eba36dd5667d1446b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
import type { OpenGraphScraperOptions } from './types';
/**
* ogs fallbacks
*
* @param {object} ogObject - the current ogObject
* @param {object} options - options for ogs
* @param {object} $ - cheerio.load() of the current html
* @return {object} object with ogs results with updated fallback values
*
*/
export declare function fallback(ogObject: any, options: OpenGraphScraperOptions, $: any, rawBody: any): any;
export default fallback;
|