UNPKG

petals-ui

Version:
15 lines (11 loc) 315 B
import { PanelBodyStyle } from './aliases'; interface IPanelComponent { readonly title: string; readonly fixed: boolean; readonly bodyClassName: string; readonly bodyStyle: PanelBodyStyle; } interface IPanelHeaderComponent { readonly title: string; } export { IPanelComponent, IPanelHeaderComponent };