Permalink
Cannot retrieve contributors at this time
25 lines (25 sloc)
790 Bytes
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
codeql-action/node_modules/@actions/core/lib/path-utils.d.ts
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/** | |
* toPosixPath converts the given path to the posix form. On Windows, \\ will be | |
* replaced with /. | |
* | |
* @param pth. Path to transform. | |
* @return string Posix path. | |
*/ | |
export declare function toPosixPath(pth: string): string; | |
/** | |
* toWin32Path converts the given path to the win32 form. On Linux, / will be | |
* replaced with \\. | |
* | |
* @param pth. Path to transform. | |
* @return string Win32 path. | |
*/ | |
export declare function toWin32Path(pth: string): string; | |
/** | |
* toPlatformPath converts the given path to a platform-specific path. It does | |
* this by replacing instances of / and \ with the platform-specific path | |
* separator. | |
* | |
* @param pth The path to platformize. | |
* @return string The platform-specific path. | |
*/ | |
export declare function toPlatformPath(pth: string): string; |