File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 11export type PackageAType = null ;
22export declare const packageAConst : PackageAType ;
3- export type PassThru < T > = T | string
3+ export type PassThru < T > = T | string ;
Original file line number Diff line number Diff line change @@ -12,4 +12,4 @@ export { subPackageConst as C4 } from "#packages/pkg-a/sub-pkg/main";
1212// This path should resolve to './packages/pkg-a/sub-pkg/main.js', due to explicit extension
1313export { subPackageConst as C5 } from "#packages/pkg-a/sub-pkg/main.js" ;
1414
15- export type ImportWithChildren = import ( "#packages/pkg-a" ) . PassThru < import ( "#packages/pkg-b" ) . PackageBType >
15+ export type ImportWithChildren = import ( "#packages/pkg-a" ) . PassThru < import ( "#packages/pkg-b" ) . PackageBType > ;
Original file line number Diff line number Diff line change @@ -43,6 +43,6 @@ describe(`Extra Tests`, () => {
4343 const res = execSync ( "npx ts-node --typeCheck src/index.ts" , { cwd : projectRoot } ) . toString ( ) ;
4444 expect ( res ) . toMatch ( / ^ n u l l ( $ | \r ? \n ) / ) ;
4545 } ) ;
46- } )
46+ } ) ;
4747 } ) ;
4848} ) ;
You can’t perform that action at this time.
0 commit comments