Skip to content

Commit c7eba97

Browse files
fix: refactor exports in index.ts for clarity and to avoid NodeNext star elision
1 parent 00c8803 commit c7eba97

1 file changed

Lines changed: 13 additions & 1 deletion

File tree

src/index.ts

Lines changed: 13 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,18 @@
11
import { NativeModules } from 'react-native';
22

3-
export * from './functions';
3+
// Explicit named re-exports to avoid NodeNext star elision
4+
export {
5+
OPSQLite,
6+
open,
7+
openRemote,
8+
openSync,
9+
moveAssetsDatabase,
10+
getDylibPath,
11+
isSQLCipher,
12+
isLibsql,
13+
isIOSEmbedded,
14+
isIOSEmbeeded,
15+
} from './functions';
416
export { Storage } from './Storage';
517
export * from './types';
618

0 commit comments

Comments
 (0)