UNPKG

552 BTypeScriptView Raw
1import React from 'react';
2import { Base16Theme } from 'redux-devtools-themes';
3interface State {
4 hovered: boolean;
5 active: boolean;
6}
7interface Props {
8 theme: Base16Theme;
9 onClick: () => void;
10 enabled: boolean;
11}
12export default class LogMonitorButton extends React.PureComponent<Props, State> {
13 state: State;
14 handleMouseEnter: () => void;
15 handleMouseLeave: () => void;
16 handleMouseDown: () => void;
17 handleMouseUp: () => void;
18 onClick: () => void;
19 render(): JSX.Element;
20}
21export {};