declare global { interface String { firstUpper(): string; } } /** * 首字母大写 * @constructor */ declare function firstUpper(str: string): string; export { firstUpper };