From bc91a258a3d12a3ec9fa52c05549dea0714f90f2 Mon Sep 17 00:00:00 2001 From: Andrew Branch Date: Wed, 18 Aug 2021 17:35:12 -0700 Subject: [PATCH] Update other error code baseline --- .../reference/isolatedModulesReExportType.errors.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/baselines/reference/isolatedModulesReExportType.errors.txt b/tests/baselines/reference/isolatedModulesReExportType.errors.txt index 6fa10e49d3520..21562d0ab648f 100644 --- a/tests/baselines/reference/isolatedModulesReExportType.errors.txt +++ b/tests/baselines/reference/isolatedModulesReExportType.errors.txt @@ -1,6 +1,6 @@ /user.ts(2,10): error TS1205: Re-exporting a type when the '--isolatedModules' flag is provided requires using 'export type'. /user.ts(17,10): error TS1205: Re-exporting a type when the '--isolatedModules' flag is provided requires using 'export type'. -/user.ts(25,10): error TS1438: 'CC' resolves to a type-only declaration and must be re-exported with a type-only re-export when 'isolatedModules' is enabled. +/user.ts(25,10): error TS1448: 'CC' resolves to a type-only declaration and must be re-exported with a type-only re-export when 'isolatedModules' is enabled. ==== /user.ts (3 errors) ==== @@ -34,7 +34,7 @@ import { C as CC } from "./reExportValueAsTypeOnly"; export { CC }; ~~ -!!! error TS1438: 'CC' resolves to a type-only declaration and must be re-exported with a type-only re-export when 'isolatedModules' is enabled. +!!! error TS1448: 'CC' resolves to a type-only declaration and must be re-exported with a type-only re-export when 'isolatedModules' is enabled. !!! related TS1377 /reExportValueAsTypeOnly.ts:1:15: 'CC' was exported here. ==== /exportT.ts (0 errors) ====