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