From 0f9befb6a6683124b62d7c0d24f94627a117794d Mon Sep 17 00:00:00 2001 From: wearrrrr Date: Sun, 24 Nov 2024 00:43:44 -0600 Subject: [PATCH] this doesn't need to be optional I think --- src/alu.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/alu.d.ts b/src/alu.d.ts index 54c88e6..21fe8ac 100644 --- a/src/alu.d.ts +++ b/src/alu.d.ts @@ -14,8 +14,8 @@ export declare global { type DefaultKeys = { [key: string]: Key; }; - // tf? if I remove boolean it breaks in settings.ts. I don't know why. - type Key = Record; + + type Key = Record; type KeyObj = { name: string;