Skip to content

Commit 455b744

Browse files
committed
fix: any -> unknown
1 parent e561d82 commit 455b744

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/server/routes/query.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ const errorOnEmptyQuery = (request: FastifyRequest) => {
1616
export default async (fastify: FastifyInstance) => {
1717
fastify.post<{
1818
Headers: { pg: string; 'x-pg-application-name'?: string }
19-
Body: { query: string; parameters?: any[] }
19+
Body: { query: string; parameters?: unknown[] }
2020
Querystring: { statementTimeoutSecs?: number }
2121
}>('/', async (request, reply) => {
2222
const statementTimeoutSecs = request.query.statementTimeoutSecs

0 commit comments

Comments
 (0)