UNPKG

427 BTypeScriptView Raw
1import * as React from "react";
2
3declare namespace ListGroup {
4 interface ListGroupProps extends React.HTMLProps<ListGroup> {
5 bsClass?: string | undefined;
6 componentClass?: React.ElementType | undefined; // Added since v0.30.0
7 // TODO: Add more specific type
8 fill?: boolean | undefined;
9 }
10}
11declare class ListGroup extends React.Component<ListGroup.ListGroupProps> {}
12export = ListGroup;