mirror of
https://github.com/kremalicious/umami.git
synced 2024-11-15 17:55:08 +01:00
15 lines
363 B
TypeScript
15 lines
363 B
TypeScript
import { NextApiRequest } from 'next';
|
|
import { Auth } from './auth';
|
|
|
|
export interface NextApiRequestQueryBody<TQuery = any, TBody = any> extends NextApiRequest {
|
|
auth?: Auth;
|
|
query: TQuery & { [key: string]: string | string[] };
|
|
body: TBody;
|
|
headers: any;
|
|
}
|
|
|
|
export interface NextApiRequestAuth extends NextApiRequest {
|
|
auth?: Auth;
|
|
headers: any;
|
|
}
|