Remove unnecessary /// <reference types="redux" />.

The redux typings use `export`, not `declare module`, and so don't need /// <reference types="redux" /> as well as the import.
This commit is contained in:
Mark Raymond
2017-11-23 09:59:59 +00:00
parent 6f16650b3d
commit c68d201b29

View File

@@ -3,8 +3,6 @@
// Definitions by: Remo H. Jansen <https://github.com/remojansen>, Ben Rogers <https://github.com/highflying>
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
/// <reference types="redux" />
import * as Redux from "redux";
type isImmutableDefault = (value: any) => boolean;