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) • 335 B
TypeScript
import { ColumnGroups, DataPacket } from './types';
export declare const group: (data: DataPacket, by: string, columnGroups: ColumnGroups) => DataPacket;
export declare const arrayUnflat: (array: Array<any>, size: number) => any[];
export declare const statementsMerge: (stringArray: Array<string>, maxStringSize: number) => string[];