DefinitelyTyped/reactstrap/lib/Table.d.ts
Marco Falkenberg 8934f1102f Add typings for reactstrap (#15357)
* Add typings for reactstrap

* Make lint happy

* Do not „double-reference“ to React types
2017-03-24 08:36:17 -07:00

15 lines
320 B
TypeScript

interface Props {
className?: string;
size?: string;
bordered?: boolean;
striped?: boolean;
inverse?: boolean;
hover?: boolean;
reflow?: boolean;
responsive?: boolean;
tag?: React.ReactType;
responsiveTag?: React.ReactType;
}
declare var Table: React.StatelessComponent<Props>;
export default Table;