add missing property for ReduxLoggerOptions (#24991)

* add missing property for ReduxLoggerOptions

add titleFormatter property type definition for ReduxLoggerOptions

* fix ci error

fix no-trailing-whitespace error
This commit is contained in:
ufolux
2018-04-16 15:25:09 -07:00
committed by Ryan Cavanaugh
parent 080eb8f130
commit 5c5ffcc7c9
+1
View File
@@ -50,6 +50,7 @@ export interface ReduxLoggerOptions {
duration?: boolean;
timestamp?: boolean;
colors?: ColorsObject | false;
titleFormatter?(formattedAction: any, formattedTime: string, took: number): string;
logger?: any;
logErrors?: boolean;
collapsed?: boolean | LoggerPredicate;