diff --git a/scripts/lib/ts-topology/context.ts b/scripts/lib/ts-topology/context.ts index 4f2e865921a..c74a8535bac 100644 --- a/scripts/lib/ts-topology/context.ts +++ b/scripts/lib/ts-topology/context.ts @@ -9,7 +9,7 @@ function assert(condition: unknown, message: string): asserts condition { } } -export function normalizePath(filePath: string): string { +function normalizePath(filePath: string): string { return filePath.split(path.sep).join(path.posix.sep); } @@ -41,7 +41,7 @@ export function createProgramContext( }; } -export function comparableSymbol( +function comparableSymbol( checker: ts.TypeChecker, symbol: ts.Symbol | undefined, ): ts.Symbol | undefined {