Generic typed pglite
npm install @stackpress/inquire-pglitePGLite connection for the Inquire library.
``bash`
$ npm i @stackpress/inquire-pglite
`js
import { PGlite } from '@electric-sql/pglite';
import connect from '@stackpress/inquire-pglite';
//this is the raw resource, anything you want
const resource = new PGlite('./build/database');
//this maps the resource to the engine
const engine = connect(resource);
``