Files

16 lines
364 B
TypeScript
Raw Permalink Normal View History

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