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.
9 lines (8 loc) • 413 B
TypeScript
interface OrderObject {
__expression?: String | Array<string | Record<string, any>> | Record<string, any>;
__no_alias?: SelectOrder;
[key: string]: 'asc' | 'desc' | String | Array<string | Record<string, any>> | SelectOrder | Record<string, any> | undefined;
}
export declare const isSelectOrder: (val: any) => val is SelectOrder;
export declare type SelectOrder = OrderObject | undefined;
export {};