UNPKG

@studyportals/sp-r2d2

Version:

A framework that contains various components used when developing projects that will be deployed via AWS λ.

10 lines (9 loc) 254 B
import { IRequest } from '../requests-interfaces/i-request.interface'; export declare class BaseRequest implements IRequest { readonly data: { [key: string]: any; }; constructor(data?: { [key: string]: any; }); }