DefinitelyTyped/reactstrap/lib/Media.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

18 lines
345 B
TypeScript

interface Props {
body?: boolean;
bottom?: boolean;
className?: string;
heading?: boolean;
left?: boolean;
list?: boolean;
middle?: boolean;
object?: boolean;
right?: boolean;
tag?: React.ReactType;
top?: boolean;
href?: string;
alt?: string;
}
declare var Media: React.StatelessComponent<Props>;
export default Media;