UNPKG

light-orm

Version:

Super simple ORM node.js wrapper for relational databases. It does not depends on any specific driver, so you can connect to mysql, ms server and so on... Try it!

9 lines (8 loc) 259 B
/** * Interface to Driver * @author Oleksandr Knyga <oleksandrknyga@gmail.com> * @license Apache License 2.0 - See file 'LICENSE.md' in this project. */ interface DriverInterface { query(query: string, handler: (err, rows, fields) => void); }