// GENERATED — DO NOT EDIT. Source: adapter-src/pi/extensions/ask-user-question/view/tab-components.ts // Regenerate with: python3 scripts/build-adapters.py import type { MultiSelectView } from "./components/multi-select-view.js"; import type { OptionListViewProps } from "./components/option-list-view.js"; import type { PreviewPane } from "./components/preview/preview-pane.js"; import type { StatefulView } from "./stateful-view.js"; export interface TabBodyHeights { current: number; max: number; } export interface TabComponents { optionList: StatefulView; preview: PreviewPane; multiSelect?: MultiSelectView; bodyHeights: (width: number) => TabBodyHeights; }