13 lines
354 B
TypeScript
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;
|