Files

23 lines
507 B
TypeScript
Raw Permalink Normal View History

2024-12-03 17:40:13 +08:00
/**
*
* @param str
* @param val
*/
export declare function endsWith(str: string, val: string): string;
/**
*
* @param str
* @param val
* @param startIndex
*/
export declare function endsWith(str: string, val: string, startIndex: number): string;
declare module './ctor' {
interface XEUtilsMethods {
endsWith: typeof endsWith;
}
}
export default endsWith