Update alkatest-common

This commit is contained in:
thepaperpilot 2022-10-14 07:53:41 -05:00
parent 49e10cf858
commit c33c2cb747

View file

@ -1,5 +1,4 @@
import { isArray } from "@vue/shared"; import { isArray } from "@vue/shared";
import type { ContentPack } from "alkatest-common/types";
import { globalBus } from "game/events"; import { globalBus } from "game/events";
import type { GenericLayer } from "game/layers"; import type { GenericLayer } from "game/layers";
import { addingLayers, persistentRefs } from "game/layers"; import { addingLayers, persistentRefs } from "game/layers";
@ -40,8 +39,6 @@ export type State =
| number | number
| boolean | boolean
| DecimalSource | DecimalSource
// TODO make it accept objects that only allow State types within them
| ContentPack
| { [key: string]: State } | { [key: string]: State }
| { [key: number]: State }; | { [key: number]: State };