Arrow function type to method type

This commit is contained in:
Ragg
2018-03-01 00:24:38 +09:00
parent 01aa7a6ff4
commit 088f244955

View File

@@ -5,7 +5,7 @@ import { EventEmitter } from 'events';
declare class BaseStore<S = {}> extends EventEmitter implements Store<S> {
constructor(dispatcher: DispatcherInterface);
initialize?: () => void;
initialize?(): void;
getContext(): DispatcherContext;
addChangeListener(callback: () => void): void;
removeChangeListener(callback: () => void): void;