import { APIGatewayProxyEvent } from "aws-lambda"; export interface AuthResponse { token: any; } export interface AuthEvent extends APIGatewayProxyEvent { auth?: AuthResponse; }