//#region src/openapi-ts-request-util.d.ts // 首字母转大写 declare function toUpperFirstLetter(text: string): string; /** * 驼峰命名 */ declare function camelize(str: string): string; /** * patch api json data * - tags 的 name 使用 description 的驼峰命名 * - 把所有接口的 tag 更新成英文 */ declare function patchApiJSON(jsonObj: any): any; //#endregion export { camelize, patchApiJSON, toUpperFirstLetter }; //# sourceMappingURL=openapi-ts-request-util.d.ts.map