File tree 2 files changed +10
-1
lines changed
2 files changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -108,7 +108,9 @@ const generateComponentTypesFile = (
108
108
return `{ ${ typeData
109
109
. sort ( sortImportNames )
110
110
. map ( ( td ) => {
111
- if ( td . originalName === td . importName ) {
111
+ if ( td . originalName === '' ) {
112
+ return `${ td . localName } ` ;
113
+ } else if ( td . originalName === td . importName ) {
112
114
return `${ td . originalName } ` ;
113
115
} else {
114
116
return `${ td . originalName } as ${ td . importName } ` ;
Original file line number Diff line number Diff line change @@ -1747,6 +1747,11 @@ declare module "@stencil/core" {
1747
1747
location : 'import' ,
1748
1748
path : '@utils' ,
1749
1749
} ,
1750
+ Fragment : {
1751
+ location : 'import' ,
1752
+ path : '@stencil/core' ,
1753
+ id : '' ,
1754
+ } ,
1750
1755
} ,
1751
1756
} ,
1752
1757
} ) ,
@@ -1767,7 +1772,9 @@ declare module "@stencil/core" {
1767
1772
*/
1768
1773
import { HTMLStencilElement, JSXBase } from "@stencil/core/internal";
1769
1774
import { MyType as UserImplementedPropType } from "@utils";
1775
+ import { Fragment } from "@stencil/core";
1770
1776
export { MyType as UserImplementedPropType } from "@utils";
1777
+ export { Fragment } from "@stencil/core";
1771
1778
export namespace Components {
1772
1779
/**
1773
1780
* docs
You can’t perform that action at this time.
0 commit comments