Files
documentation/node_modules/fork-ts-checker-webpack-plugin/lib/utils/path/forwardSlash.d.ts
2024-03-22 03:47:51 +05:30

7 lines
154 B
TypeScript

/**
* Replaces backslashes with one forward slash
* @param input
*/
declare function forwardSlash(input: string): string;
export default forwardSlash;