You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
551 B
15 lines
551 B
|
3 years ago
|
import { Payload, Plugin } from "./index";
|
||
|
|
|
||
|
|
export interface LoggerOption<S> {
|
||
|
|
collapsed?: boolean;
|
||
|
|
filter?: <P extends Payload>(mutation: P, stateBefore: S, stateAfter: S) => boolean;
|
||
|
|
transformer?: (state: S) => any;
|
||
|
|
mutationTransformer?: <P extends Payload>(mutation: P) => any;
|
||
|
|
actionFilter?: <P extends Payload>(action: P, state: S) => boolean;
|
||
|
|
actionTransformer?: <P extends Payload>(action: P) => any;
|
||
|
|
logMutations?: boolean;
|
||
|
|
logActions?: boolean;
|
||
|
|
}
|
||
|
|
|
||
|
|
export default function createLogger<S>(option?: LoggerOption<S>): Plugin<S>;
|