import {open} from 'react-native-nitro-sqlite' const db = open('myDb.sqlite') // The db object now contains the following methods: db = { close: () => void, delete: () => void, attach: (dbNameToAttach: string, alias: string, location?: string) => void, detach: (alias: ...