//#region packages/basic/string/firstUpper.d.ts /** * 首字母大写 * @param {string} str 处理字符串 * @returns {string} */ declare function firstUpper(str: string): string; //#endregion export { firstUpper as t };