UNPKG
@n8n-plus/n8n-plus
Version:
latest (2.23.4)
rc (2.27.4)
stable (2.23.4)
2.27.4
2.23.4
2.22.5
2.21.4
2.20.6
2.19.2
2.17.3
2.16.0
2.14.2
2.10.3
2.9.4
2.9.2
2.7.4
2.7.3
2.6.4
2.3.2
2.2.6
2.2.5
2.2.3
2.1.5
2.1.4
2.0.3
2.0.2
1.123.5
1.123.4
1.122.5
1.122.4
1.121.2
1.120.4
1.120.3
1.120.1
1.119.1
1.118.2
1.117.3
1.117.2
1.116.2
1.115.2
1.114.4
1.114.3
1.113.3
1.112.6
1.112.4
1.112.3
1.110.1
1.109.2
1.109.1
1.108.2
1.107.4
1.107.3
1.106.3
1.105.4
1.105.3
1.105.2
1.104.2
1.104.1
1.103.2
1.102.4
1.102.3
1.101.2
1.101.1
1.100.1
1.99.1
1.98.2
1.97.1
1.95.3
1.94.1
1.93.0
1.91.3
1.91.2
1.90.2
1.89.2
1.88.0
1.86.1
1.85.4
1.85.0
1.84.2
1.84.0
n8n Workflow Automation Tool (plus edition)
n8n.io
n8n-plus/n8n-plus
@n8n-plus/n8n-plus
/
dist
/
middlewares
/
list-query
/
index.d.ts
5 lines
(4 loc)
•
277 B
TypeScript
View Raw
1
2
3
4
5
import
{
type
NextFunction
,
type
Response
}
from
'express'
;
import
type
{
ListQuery
}
from
'../../requests'
;
export
type
ListQueryMiddleware
=
(
req
:
ListQuery
.
Request
,
res
:
Response
,
next
:
NextFunction
) =>
void
;
export
declare
const
listQueryMiddleware
:
ListQueryMiddleware
[];