mirror of
https://github.com/zhigang1992/DefinitelyTyped.git
synced 2026-04-19 16:49:45 +08:00
12 lines
290 B
TypeScript
12 lines
290 B
TypeScript
import * as devTools from "remote-redux-devtools";
|
|
|
|
// example configuration from: https://github.com/zalmoxisus/remote-redux-devtools
|
|
devTools({
|
|
name: 'Android app',
|
|
realtime: true,
|
|
hostname: 'localhost',
|
|
port: 8000,
|
|
maxAge: 30,
|
|
filters: { blacklist: ['EFFECT_RESOLVED'] }
|
|
});
|