From c33c2cb7476f4efdaa5edcf686ac0cb7c54bc883 Mon Sep 17 00:00:00 2001 From: thepaperpilot Date: Fri, 14 Oct 2022 07:53:41 -0500 Subject: [PATCH] Update alkatest-common --- src/game/persistence.ts | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/game/persistence.ts b/src/game/persistence.ts index f6a38b8..b871fbf 100644 --- a/src/game/persistence.ts +++ b/src/game/persistence.ts @@ -1,5 +1,4 @@ import { isArray } from "@vue/shared"; -import type { ContentPack } from "alkatest-common/types"; import { globalBus } from "game/events"; import type { GenericLayer } from "game/layers"; import { addingLayers, persistentRefs } from "game/layers"; @@ -40,8 +39,6 @@ export type State = | number | boolean | DecimalSource - // TODO make it accept objects that only allow State types within them - | ContentPack | { [key: string]: State } | { [key: number]: State };