From 4f5704cb4944d6f65aaec93998d5e8e9f1cc5948 Mon Sep 17 00:00:00 2001 From: Aiden Date: Thu, 16 Nov 2023 18:19:56 -0500 Subject: [PATCH] fix bad type --- src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.ts b/src/index.ts index e014869..d591932 100644 --- a/src/index.ts +++ b/src/index.ts @@ -2,7 +2,7 @@ import fastify from "fastify"; import type { StdQuery } from "./types/query.js"; import type { Keys } from "./types/keys.js"; import untypedKeys from "../config/keys.json"; -const keys: Keys = untypedKeys; +const keys = untypedKeys as Keys; import type { ApiResponse, DDNResult, Result } from "./types/results.js"; const api = fastify();