File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 6767 "typescript_5.4" : " npm:typescript@5.4" ,
6868 "typescript_5.5" : " npm:typescript@5.5" ,
6969 "typescript_5.6" : " npm:typescript@5.6" ,
70- "typescript_5.7" : " npm:typescript@5.7"
70+ "typescript_5.7" : " npm:typescript@5.7" ,
71+ "typescript_5.8" : " npm:typescript@5.8"
7172 },
7273 "engines" : {
7374 "node" : " >=16.0.0"
Original file line number Diff line number Diff line change 55}
66*/
77
8- import { SuperConstructorInvokeInfo } from 'polytype';
8+ import type { SuperConstructorInvokeInfo } from 'polytype';
Original file line number Diff line number Diff line change 55}
66*/
77
8- import { SuperConstructorInvokeInfo } from 'polytype/global';
8+ import type { SuperConstructorInvokeInfo } from 'polytype/global';
Original file line number Diff line number Diff line change 77class A
88{
99 public constructor(n: number, s?: string)
10- { }
10+ {
11+ void null;
12+ }
1113}
1214
1315abstract class B
1416{
1517 public constructor(o: object)
16- { }
18+ {
19+ void null;
20+ }
1721}
1822
1923void
Original file line number Diff line number Diff line change 66 "moduleResolution" : " Node16" ,
77 "noUncheckedSideEffectImports" : true ,
88 "strict" : true ,
9- "target" : " ES2020"
9+ "target" : " ES2020" ,
10+ "verbatimModuleSyntax" : true
1011 },
1112 "include" : [
1213 " example" ,
You can’t perform that action at this time.
0 commit comments