/** * Contains a set of generic functions used in different places. * @module utils */ /** * Turns a text into snake case. * @param {string} text The text to convert. * @returns {string} The text converted. */ export function snakeCase(text: string): string; /** * Converts an object of headers to lower case. * @param {object} headers The headers to convert. * @returns {object} The converted object. */ export function lowerHeaders(headers: object): object;