mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-21 13:27:15 +08:00
* Add typings for reactstrap * Make lint happy * Do not „double-reference“ to React types
13 lines
262 B
TypeScript
13 lines
262 B
TypeScript
interface Props {
|
|
tag?: React.ReactType;
|
|
active?: boolean;
|
|
className?: string;
|
|
// if a is passed as a string
|
|
// this could be href
|
|
[others: string]: any;
|
|
}
|
|
|
|
declare var BreadcrumbItem: React.StatelessComponent<Props>;
|
|
export default BreadcrumbItem;
|
|
|