UNPKG

@elium/mighty

Version:

Context agnostic TS & JS ORM

12 lines (11 loc) 332 B
import { IMap } from '../utils/map'; export declare type IRequestData = IMap<any> | Array<IMap<any>>; export interface IRequest { data?: IRequestData; criteria?: IMap<any>; } export declare class Request implements IRequest { criteria: IMap<any>; data: IRequestData; constructor(config: IMap<any>); }