UNPKG

310 BTypeScriptView Raw
1/**
2 * 去除字符串右边的空格
3 * @param str 字符串
4 */
5export declare function trimRight(str: string): string;
6export declare function trimRight(str: any): string;
7
8declare module './ctor' {
9 interface XEUtilsMethods {
10 trimRight: typeof trimRight;
11 }
12}
13
14export default trimRight