From f11b49855eee36ec0b213ed7f77c9a6f4cd11775 Mon Sep 17 00:00:00 2001 From: Issei Horie Date: Fri, 10 Jun 2022 08:52:31 +0900 Subject: [PATCH] chore: fix typo Mulipart -> Multipart --- test/index.test-d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/index.test-d.ts b/test/index.test-d.ts index ef5ee86f..8a07c8d7 100644 --- a/test/index.test-d.ts +++ b/test/index.test-d.ts @@ -18,7 +18,7 @@ const runServer = async () => { sharedSchemaId: 'sharedId', throwFileSizeLimit: false, // stream should be of type streams.Readable - // body should be of type fastifyMulipart.Record + // body should be of type fastifyMultipart.Record onFile: (fieldName: string, stream: any, filename: string, encoding: string, mimetype: string, body: Record) => { console.log(fieldName, stream, filename, encoding, mimetype, body) },