UNPKG

@capacitor-community/sqlite

Version:

Community plugin for native & electron SQLite databases

8 lines 354 B
import { registerPlugin } from '@capacitor/core'; const CapacitorSQLite = registerPlugin('CapacitorSQLite', { web: () => import('./web').then((m) => new m.CapacitorSQLiteWeb()), electron: () => window.CapacitorCustomPlatform.plugins.CapacitorSQLite, }); export { CapacitorSQLite }; export * from './definitions'; //# sourceMappingURL=index.js.map