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 1
1
export type PackageAType = null ;
2
2
export 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";
12
12
// This path should resolve to './packages/pkg-a/sub-pkg/main.js', due to explicit extension
13
13
export { subPackageConst as C5 } from "#packages/pkg-a/sub-pkg/main.js" ;
14
14
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`, () => {
43
43
const res = execSync ( "npx ts-node --typeCheck src/index.ts" , { cwd : projectRoot } ) . toString ( ) ;
44
44
expect ( res ) . toMatch ( / ^ n u l l ( $ | \r ? \n ) / ) ;
45
45
} ) ;
46
- } )
46
+ } ) ;
47
47
} ) ;
48
48
} ) ;
You can’t perform that action at this time.
0 commit comments