1
- declarationEmitBindingPatternsUnused.ts(81 ,35): error TS2842: 'alias' is an unused renaming of 'name'. Did you intend to use it as a type annotation?
2
- declarationEmitBindingPatternsUnused.ts(85 ,41): error TS2842: 'alias' is an unused renaming of 'name'. Did you intend to use it as a type annotation?
3
- declarationEmitBindingPatternsUnused.ts(91 ,11): error TS2842: 'alias' is an unused renaming of 'name'. Did you intend to use it as a type annotation?
4
- declarationEmitBindingPatternsUnused.ts(92 ,15): error TS2842: 'alias' is an unused renaming of 'name'. Did you intend to use it as a type annotation?
5
- declarationEmitBindingPatternsUnused.ts(93 ,16): error TS2842: 'alias' is an unused renaming of 'name'. Did you intend to use it as a type annotation?
6
- declarationEmitBindingPatternsUnused.ts(94 ,12): error TS2842: 'alias' is an unused renaming of 'name'. Did you intend to use it as a type annotation?
1
+ declarationEmitBindingPatternsUnused.ts(85 ,35): error TS2842: 'alias' is an unused renaming of 'name'. Did you intend to use it as a type annotation?
2
+ declarationEmitBindingPatternsUnused.ts(89 ,41): error TS2842: 'alias' is an unused renaming of 'name'. Did you intend to use it as a type annotation?
3
+ declarationEmitBindingPatternsUnused.ts(95 ,11): error TS2842: 'alias' is an unused renaming of 'name'. Did you intend to use it as a type annotation?
4
+ declarationEmitBindingPatternsUnused.ts(96 ,15): error TS2842: 'alias' is an unused renaming of 'name'. Did you intend to use it as a type annotation?
5
+ declarationEmitBindingPatternsUnused.ts(97 ,16): error TS2842: 'alias' is an unused renaming of 'name'. Did you intend to use it as a type annotation?
6
+ declarationEmitBindingPatternsUnused.ts(98 ,12): error TS2842: 'alias' is an unused renaming of 'name'. Did you intend to use it as a type annotation?
7
7
8
8
9
9
==== declarationEmitBindingPatternsUnused.ts (6 errors) ====
@@ -26,6 +26,10 @@ declarationEmitBindingPatternsUnused.ts(94,12): error TS2842: 'alias' is an unus
26
26
return alias;
27
27
}
28
28
29
+ function referencedInSignartureKeyword({ function: alias }: { function: string }): typeof alias {
30
+ return null!;
31
+ }
32
+
29
33
function referencedInInferredType({ name: alias }: Named) {
30
34
type Named2 = { name: typeof alias }
31
35
return null! as Named2
0 commit comments