UNPKG

biketag-admin

Version:

<h1 align=center>BikeTag-Admin</h1> <div align="center"> <img alt="biketag-admin logo" src="https://raw.githubusercontent.com/keneucker/biketag-website/production/public/img/Tag-Logo-Stacked-V2-medium.png" height="auto" width="200" style="border-radius:25

26 lines (25 loc) 767 B
import { HttpStatusCode } from '../common'; declare const profileHandler: (event: any) => Promise<{ statusCode: HttpStatusCode; headers: { Accept: string; 'Access-Control-Allow-Headers': string; 'Content-Type': string; 'Access-Control-Allow-Methods': string; 'Access-Control-Allow-Origin': string; 'Access-Control-Max-Age': string; }; body?: undefined; } | { statusCode: number; headers: { Accept: string; 'Access-Control-Allow-Headers': string; 'Content-Type': string; 'Access-Control-Allow-Methods': string; 'Access-Control-Allow-Origin': string; 'Access-Control-Max-Age': string; }; body: any; }>; export { profileHandler as handler };