Remove unused property

This commit is contained in:
Jordan Eldredge 2019-04-05 07:34:14 -07:00
parent 12139fb190
commit 646b38319e

View file

@ -58,8 +58,6 @@ type Props = StateProps & DispatchProps & OwnProps;
class App extends React.Component<Props> {
// TODO: #any
_emitter: Emitter;
// TODO: #any
_windowNodes: { [windowId: string]: any };
_bindings: {
[windowId: string]: { node: HTMLElement; remove(): void } | null;
};
@ -68,7 +66,6 @@ class App extends React.Component<Props> {
constructor(props: Props) {
super(props);
this._emitter = new Emitter();
this._windowNodes = {};
this._bindings = {};
this._webampNode = null;
}