diff --git a/public/app/core/components/UserPicker/UserPickerOption.tsx b/public/app/core/components/UserPicker/UserPickerOption.tsx index 145784127ee..c052631d295 100644 --- a/public/app/core/components/UserPicker/UserPickerOption.tsx +++ b/public/app/core/components/UserPicker/UserPickerOption.tsx @@ -1,6 +1,12 @@ import React, { Component } from "react"; - -class UserPickerOption extends Component { +export interface IProps { + onSelect: any; + onFocus: any; + option: any; + isFocused: any; + className: any; +} +class UserPickerOption extends Component { constructor(props) { super(props); this.handleMouseDown = this.handleMouseDown.bind(this);