blob: a043f739bcea5e421c679b756256fc873b04134d (
plain)
1
2
3
4
5
6
7
8
9
|
/**
* performs the got request and formats the body for ogs
*
* @param {object} gotOptions - options for got
* @param {object} ogsOptions - options for ogs
* @return {object} formatted request body and response
*
*/
export default function requestAndResultsFormatter(gotOptions: any, ogsOptions: any): Promise<any>;
|