TS4081
error TS4081: Exported type alias ‘
MyReturnType
‘ has or is using private name ‘getSdk
‘.
Broken Code ❌
1 |
|
1 |
|
Fixed Code ✔️
The getSdk
is identified to be private because it is not exported. If we export the getSdk
function, we won’t have any more problems:
1 |
|
1 |
|