UNPKG

petals-ui

Version:
16 lines (15 loc) 436 B
import { ComponentStyle } from '../../basic'; interface IListComponent { readonly title: string; readonly bordered: boolean; readonly divided: boolean; readonly bodyClassName: string; readonly bodyStyle: ComponentStyle; } interface IListItemComponent { } interface IListHeaderComponent { } interface IListFooterComponent { } export { IListComponent, IListItemComponent, IListHeaderComponent, IListFooterComponent };