Compare commits

...

1 Commits

Author SHA1 Message Date
Agusti Fernandez Pardo 8f1feaa840 feat: adds types needed for api in shared @calcom/types 2022-05-19 22:06:30 +02:00
1 changed files with 4 additions and 0 deletions

View File

@ -6,5 +6,9 @@ import "./next-auth";
export declare module "next" {
interface NextApiRequest extends IncomingMessage {
session?: Session | null;
userId: number;
query: {
apiKey: string;
};
}
}