6 lines
200 B
TypeScript
6 lines
200 B
TypeScript
/** Convert any platform-specific path to a POSIX path.
|
|
* @privateRemarks
|
|
* Metro's equivalent is `normalizePathSeparatorsToPosix`
|
|
*/
|
|
export declare function toPosixPath(filePath: string): string;
|