@joktec/mysql
Version:
JokTec - MySql Service
12 lines • 458 B
TypeScript
import { IBaseRequest, IDataType } from '@joktec/core';
import { MysqlModel } from './mysql.model';
export type MysqlId = string | number | bigint;
export type ArrayBinding = Array<IDataType>;
export type DictBinding = {
[key: string]: IDataType;
};
export type RawBinding = ArrayBinding | DictBinding;
export interface IMysqlRequest<T extends MysqlModel> extends IBaseRequest<T> {
withDeleted?: boolean;
}
//# sourceMappingURL=mysql.request.d.ts.map