NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/xe-utils/methods/string/trimLeft.d.ts
2023-09-14 14:47:11 +08:00

20 lines
372 B
TypeScript

import { XEUtilsMethods } from '../xe-utils'
/**
* 去除字符串左边的空格
* @param str 字符串
*/
export declare function trimLeft(str: string): string;
declare module '../xe-utils' {
interface XEUtilsMethods {
/**
* 去除字符串左边的空格
* @param str 字符串
*/
trimLeft: typeof trimLeft;
}
}
export default trimLeft