pg-promise
Version:
PostgreSQL interface for Node.js
19 lines (16 loc) • 521 B
JavaScript
/*
* Copyright (c) 2015-present, Vitaly Tomilov
*
* See the LICENSE file at the top-level directory of this distribution
* for licensing information.
*
* Removal or modification of this copyright notice is prohibited.
*/
const {ServerFormatting} = require('./server-formatting');
const {PreparedStatement} = require('./prepared-statement');
const {ParameterizedQuery} = require('./parameterized-query');
module.exports = {
ServerFormatting,
PreparedStatement,
ParameterizedQuery
};