1234567891011121314151617181920212223 |
- import { XEUtilsMethods } from '../xe-utils'
- /**
- * 用指定字符从前面开始补全字符串
- * @param str 字符串
- * @param targetLength 结果长度
- * @param padString 补全字符
- */
- export declare function padStart(str: string, targetLength: number, padString?: string): string;
- declare module '../xe-utils' {
- interface XEUtilsMethods {
- /**
- * 用指定字符从前面开始补全字符串
- * @param str 字符串
- * @param targetLength 结果长度
- * @param padString 补全字符
- */
- padStart: typeof padStart;
- }
- }
- export default padStart
|