smartstring/dist/smartstring.normalize.d.ts
2017-10-26 15:24:10 +02:00

13 lines
354 B
TypeScript

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