import { DeckBase, DeckBaseDraft } from "./deck-base"; import { Panel, PanelDraft } from "./panel"; export type HoistableDeck = DeckBase & { type: "hoistable"; panels: Panel[]; }; export type HoistableDeckDraft = DeckBaseDraft & { type: "hoistable"; panels: PanelDraft[]; };