UNPKG

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.

5 lines (4 loc) 273 B
import { PreparedStatement } from '../../types'; import { ConditionOptions } from './types'; declare const create_conditions: (value: ConditionOptions, alias?: string | undefined, secondaryAlias?: string | undefined) => PreparedStatement; export default create_conditions;