9 lines
220 B
TypeScript
9 lines
220 B
TypeScript
import { IncomingMessage } from "http";
|
|
export default function (req: IncomingMessage): Promise<{
|
|
email: string;
|
|
password: string;
|
|
authKey: string;
|
|
logged_in_status: boolean;
|
|
date: number;
|
|
} | null>;
|