mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-02-28 03:32:56 +00:00
* Add typings for reactstrap * Make lint happy * Do not „double-reference“ to React types
18 lines
345 B
TypeScript
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; |