You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
456 B
17 lines
456 B
5 months ago
|
/**
|
||
|
* 用指定字符从前面开始补全字符串
|
||
|
* @param str 字符串
|
||
|
* @param targetLength 结果长度
|
||
|
* @param padString 补全字符
|
||
|
*/
|
||
|
export declare function padStart(str: string, targetLength: number, padString?: string): string;
|
||
|
export declare function padStart(str: any, targetLength: number, padString?: any): string;
|
||
|
|
||
|
declare module './ctor' {
|
||
|
interface XEUtilsMethods {
|
||
|
padStart: typeof padStart;
|
||
|
}
|
||
|
}
|
||
|
|
||
|
export default padStart
|