smartstring/dist/smartstring.normalize.d.ts

13 lines
350 B
TypeScript

/**
* replaces all occurences of something in a string
* @param stringArg
* @param searchRegExp
* @param replacementString
*/
export declare let replaceAll: (stringArg: string, searchRegExp: any, replacementString: string) => string;
/**
* normalizes a string
* @param stringArg
*/
export declare let standard: (stringArg: string) => string;