mirror of https://github.com/jkjoy/sunpeiwen.git
9 lines
195 B
TypeScript
9 lines
195 B
TypeScript
|
/**
|
||
|
* Escapes regexp special chars
|
||
|
*/
|
||
|
export declare function escapeRegExp(str: string): string;
|
||
|
/**
|
||
|
* Trim trailing char
|
||
|
*/
|
||
|
export declare function chomp(str: string, char: string): string;
|