TS2661

error TS2661: Cannot export ‘getSdk‘. Only local declarations can be exported from a module.

Broken Code ❌

index.ts
1
export {getSdk};
getSdk.ts
1
function getSdk() {}

Fixed Code ✔️

If you want to re-export getSdk in another file, you have to export it first from its origin and then import it in the file where you want to re-export it:

index.ts
1
2
3
import {getSdk} from './getSdk';

export {getSdk};
getSdk.ts
1
export function getSdk() {}