7 lines
150 B
TypeScript
7 lines
150 B
TypeScript
|
/**
|
||
|
* Replaces backslashes with one forward slash
|
||
|
* @param input
|
||
|
*/
|
||
|
declare function forwardSlash(input: string): string;
|
||
|
export { forwardSlash };
|