From 21bb215462cfc6d9b19e83eacb8058e7ee1cffaf Mon Sep 17 00:00:00 2001 From: Frazer Smith Date: Sun, 5 Jan 2025 18:12:21 +0000 Subject: [PATCH] chore: fix linting (#163) * chore: fix linting Signed-off-by: Frazer Smith * chore: missed one --------- Signed-off-by: Frazer Smith --- types/index.test-d.ts | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/types/index.test-d.ts b/types/index.test-d.ts index 39c1439..7f64e18 100644 --- a/types/index.test-d.ts +++ b/types/index.test-d.ts @@ -1,10 +1,8 @@ -import { FastifyInstance, FastifyPluginCallback, FastifyReply, FastifyRequest } from 'fastify' -import fastify from 'fastify' +import fastify, { FastifyInstance, FastifyPluginCallback, FastifyReply, FastifyRequest } from 'fastify' import { either, task, taskEither } from 'fp-ts' import { expectType, expectAssignable } from 'tsd' -import { fastifyFunky as fastifyFunkyNamed } from '..' -import fastifyFunkyDefault from '..' +import fastifyFunkyDefault, { fastifyFunky as fastifyFunkyNamed } from '..' import * as fastifyFunkyStar from '..' import fastifyFunkyCjsImport = require('..') const fastifyFunkyCjs = require('./')