/** * When using `fetch()` for a GET request, you can't just give the parameters the same way you'd give them for a POST request! * @param parameters The parameters as they'd be for a POST request (prior to using `JSON.stringify`) * @returns Parameters adapted for a GET request */ export declare function adaptParametersForGETRequests(parameters: { [k: string]: any; }): { [k: string]: any; }; /** * Some stuff doesn't have the right type to begin with, such as dates, which are being returned as strings, this fixes that * @param x Anything, but should be a string, an array that contains a string, or an object which has a string * @param force_string Should `x` be as much as a string as it can? (defaults to false) * @returns x, but with it (or what it contains) now having the correct type */ export declare function correctType(x: any, force_string?: boolean): any;