blob: 4970468f335823918dac03d70a1d826f26f08438 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
import type { OgObject, OpenGraphScraperOptions } from './types';
/**
* formats the multiple media values
*
* @param {object} ogObject - the current ogObject
* @param {object} options - options for ogs
* @return {object} object with ogs results with updated media values
*
*/
export declare function mediaSetup(ogObject: OgObject, options: OpenGraphScraperOptions): OgObject;
export default mediaSetup;
|