We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f85766c commit 110f01fCopy full SHA for 110f01f
1 file changed
src/routes/dynamic-data/range.ts
@@ -7,7 +7,7 @@ import type {
7
8
type RangeRequest = FastifyRequest<{
9
Params: { numbytes: string };
10
- Querystring: { duration?: string; chunk_size?: string };
+ Querystring: { duration?: string };
11
}>;
12
13
const rangeSchema: FastifySchema = {
@@ -31,10 +31,6 @@ const rangeSchema: FastifySchema = {
31
type: "string",
32
description: "Delay before sending response in seconds",
33
},
34
- chunk_size: {
35
- type: "string",
36
- description: "Size of each chunk",
37
- },
38
39
40
response: {
0 commit comments