From 93ac0218fd1c699f46aa5efee072e507f67dea86 Mon Sep 17 00:00:00 2001 From: Leonid Fedorov Date: Thu, 25 Oct 2018 11:29:03 +0300 Subject: [PATCH] fix: update typings --- index.d.ts | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/index.d.ts b/index.d.ts index a683f60..c5bdcad 100644 --- a/index.d.ts +++ b/index.d.ts @@ -1,8 +1,9 @@ -import { InterpolationValue } from 'styled-components' +import { InterpolationValue, GlobalStyleClass, DefaultTheme } from 'styled-components' export const version: string declare const normalize: InterpolationValue +declare const Normalize: (() => null) | GlobalStyleClass<{}, DefaultTheme> -export { normalize } +export { normalize, Normalize } export default normalize