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