UNPKG
@kyleroberts69/core
Version:
latest (1.1.3)
1.1.3
1.1.2
1.1.1
1.1.0
Core library for the Chatbot project
.
@kyleroberts69/core
/
auth
/
server-side.d.ts
7 lines
(6 loc)
•
253 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
NextApiRequest
,
NextApiResponse
}
from
'next'
;
import
{
Session
}
from
'../types/auth'
;
export
interface
ServerAuth
{
session
:
(
req
:
NextApiRequest
,
res
:
NextApiResponse
,
authOptions
:
any
) =>
Promise
<
Session
|
null
>;
apiHandler
:
any
; }