You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The change in #543 is causing a typescript issue when I am attempting to build with the latest version of rc-pagination
I'm seeing:
> tsc -b
node_modules/rc-pagination/lib/index.d.ts:2:1 - error TS1383: Only named exports may use 'export type'.
2 export type * from './interface';
~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
If you change this to export * from ./interfaceI believe things will do what you want and avoids this typescript error. This works fine becauseinterface.ts` is just a collection of types