Skip to content

Commit abd03c4

Browse files
committed
Remove unused overload
1 parent 2df5a8f commit abd03c4

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

src/compiler/core.ts

-2
Original file line numberDiff line numberDiff line change
@@ -772,8 +772,6 @@ namespace ts {
772772
return i < 0 ? path : path.substring(i + 1);
773773
}
774774

775-
export function combinePaths(path1: string, path2: string): string;
776-
export function combinePaths(path1: Path, path2: string): Path;
777775
export function combinePaths(path1: string, path2: string) {
778776
if (!(path1 && path1.length)) return path2;
779777
if (!(path2 && path2.length)) return path1;

0 commit comments

Comments
 (0)