cal.pub0.org/packages/app-store/next.d.ts

11 lines
231 B
TypeScript

import type { IncomingMessage } from "http";
import type { Session } from "next-auth";
import "./next-auth";
export declare module "next" {
interface NextApiRequest extends IncomingMessage {
session?: Session | null;
}
}