From 5a9a05122e82a5ec21f45d74cb2aa99f54b9b3a7 Mon Sep 17 00:00:00 2001 From: Adam Lavin Date: Fri, 16 Nov 2018 16:28:52 +0000 Subject: [PATCH] Fix compatibility with latest styled-components types (#10) --- index.d.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/index.d.ts b/index.d.ts index ba481fa..357c365 100644 --- a/index.d.ts +++ b/index.d.ts @@ -1,7 +1,7 @@ -import { InterpolationValue, GlobalStyleClass, DefaultTheme } from 'styled-components' +import { InterpolationValue, GlobalStyleComponent, DefaultTheme } from 'styled-components' declare const normalize: InterpolationValue -declare const Normalize: GlobalStyleClass<{}, DefaultTheme> +declare const Normalize: GlobalStyleComponent<{}, DefaultTheme> export { normalize, Normalize } export default normalize