Files
tekelanew_acs/acs/nladmin-ui/node_modules/xe-utils/startsWith.d.ts

16 lines
364 B
TypeScript
Raw 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