File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed
Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change 1- import { HybridObject } from 'react-native-nitro-modules'
2- import { ColumnType , SQLiteValue } from '../types'
1+ import type { HybridObject } from 'react-native-nitro-modules'
2+ import type { ColumnType , SQLiteValue } from '../types'
33
44/**
55 * Object returned by SQL Query executions {
Original file line number Diff line number Diff line change @@ -11,7 +11,7 @@ import type {
1111 SQLiteQueryParams ,
1212 Transaction ,
1313} from './types'
14- import { open } from 'react-native-quick-sqlite '
14+ import * as Operations from './operations '
1515
1616interface TypeOrmQuickSQLiteConnection {
1717 executeSql : < RowData extends SQLiteItem = never > (
@@ -45,7 +45,7 @@ export const typeORMDriver = {
4545 fail : ( msg : string ) => void
4646 ) : TypeOrmQuickSQLiteConnection | null => {
4747 try {
48- const db = open ( options )
48+ const db = Operations . open ( options )
4949
5050 const connection : TypeOrmQuickSQLiteConnection = {
5151 executeSql : async < RowData extends SQLiteItem = never > (
You can’t perform that action at this time.
0 commit comments