Skip to content

Commit ee9f892

Browse files
author
Andy Hanson
committed
Remove combinePaths overloads
1 parent 458a6de commit ee9f892

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
@@ -1829,8 +1829,6 @@ namespace ts {
18291829
return i < 0 ? path : path.substring(i + 1);
18301830
}
18311831

1832-
export function combinePaths(path1: Path, path2: string): Path;
1833-
export function combinePaths(path1: string, path2: string): string;
18341832
export function combinePaths(path1: string, path2: string): string {
18351833
if (!(path1 && path1.length)) return path2;
18361834
if (!(path2 && path2.length)) return path1;

0 commit comments

Comments
 (0)