UNPKG

@studyportals/sp-r2d2

Version:

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

12 lines (11 loc) 222 B
/** * A simple request that contains the minimal execution information. */ export interface IRequest { /** * Gets the request's data. */ readonly data: { [key: string]: any; }; }