mysql-all-in-one
Version:
A package that allows you to have a complete interaction with a MYSQL database, allowing to connect to the database, retrieve data and create queries.
6 lines (5 loc) • 324 B
TypeScript
import { SelectOptions, SelectTable, TableObjectReturn } from './types';
import { PreparedStatement } from '../types';
export declare const tableObject: (table: SelectTable | undefined) => TableObjectReturn;
declare const selectStatement: (opts: SelectOptions) => PreparedStatement | string;
export default selectStatement;