@studyportals/sp-r2d2
Version:
A framework that contains various components used when developing projects that will be deployed via AWS λ.
15 lines (14 loc) • 353 B
TypeScript
import { IApiRequest } from './i-api-request.interface';
/**
* A request that contains the details of the initiating user.
*/
export interface IAuthenticatedRequest extends IApiRequest {
/**
* 屪
*/
readonly __i_authenticated_request__: true;
/**
* Gets the username.
*/
readonly username: string;
}