mirror of
https://github.com/Snigdha-OS/documentation.git
synced 2025-09-10 19:54:57 +02:00
7 lines
154 B
TypeScript
7 lines
154 B
TypeScript
/**
|
|
* Replaces backslashes with one forward slash
|
|
* @param input
|
|
*/
|
|
declare function forwardSlash(input: string): string;
|
|
export default forwardSlash;
|