mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2025-07-27 00:19:55 +03:00
Fix more lint
This commit is contained in:
parent
c4b34bcd07
commit
7e10f53b95
|
@ -30,7 +30,7 @@ let socket: SCClientSocket;
|
||||||
let store: MiddlewareAPI<Dispatch<StoreAction>, StoreState>;
|
let store: MiddlewareAPI<Dispatch<StoreAction>, StoreState>;
|
||||||
|
|
||||||
function emit({ message: type, id, instanceId, action, state }: EmitAction) {
|
function emit({ message: type, id, instanceId, action, state }: EmitAction) {
|
||||||
socket.emit(id ? 'sc-' + id : 'respond', { type, action, state, instanceId });
|
socket.emit(id ? `sc-${id}` : 'respond', { type, action, state, instanceId });
|
||||||
}
|
}
|
||||||
|
|
||||||
function startMonitoring(channel: string) {
|
function startMonitoring(channel: string) {
|
||||||
|
|
|
@ -3,5 +3,5 @@
|
||||||
"compilerOptions": {
|
"compilerOptions": {
|
||||||
"outDir": "lib"
|
"outDir": "lib"
|
||||||
},
|
},
|
||||||
"include": ["src"]
|
"include": ["demo", "src"]
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user