NuclearDispersionSystem/ant-design-vue-jeecg/node_modules/xe-utils/methods/string/trimLeft.d.ts

20 lines
372 B
TypeScript
Raw Normal View History

2023-09-14 14:47:11 +08:00
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