UNPKG
agenda-admin
Version:
latest (1.1.4)
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.0
A dashboard for agenda.js
github.com/Lexis-Solutions/agenda-admin
Lexis-Solutions/agenda-admin
agenda-admin
/
dist
/
controllers
/
autocomplete.d.ts
7 lines
(6 loc)
•
247 B
TypeScript
View Raw
1
2
3
4
5
6
7
import
{
NextFunction
,
Request
,
Response
}
from
'express'
;
interface
ReqQuery
{
autocomplete
:
string
; }
export
declare
const
autocomplete
:
(
req
:
Request
<
any
,
any
,
any
,
ReqQuery
>,
res
:
Response
,
next
:
NextFunction
) =>
Promise
<
void
>;
export
{};