remove default exports

major version 1.x
This commit is contained in:
Blake Joynes
2023-04-16 15:39:45 -04:00
parent de2f76d257
commit 69a883e845
5 changed files with 8 additions and 6 deletions

View File

@@ -1,6 +1,8 @@
import TMDB from './tmdb';
import {TMDB} from './tmdb';
export * from './types';
export * from './utils';
export default TMDB;
export {
TMDB
}