mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
* Add typings for reactstrap * Make lint happy * Do not „double-reference“ to React types
15 lines
351 B
TypeScript
15 lines
351 B
TypeScript
/// <reference types='tether' />
|
|
|
|
interface Props {
|
|
className?: string;
|
|
arrow?: string;
|
|
disabled?: boolean;
|
|
isOpen: boolean;
|
|
toggle: () => void;
|
|
tether: Tether.ITetherOptions;
|
|
tetherRef?: (tether: Tether) => void;
|
|
style?: React.CSSProperties;
|
|
}
|
|
|
|
declare var TetherContent: React.StatelessComponent<Props>;
|
|
export default TetherContent; |