From 7fbd6b7902120b9dc7cf60e870da2d1afd579912 Mon Sep 17 00:00:00 2001 From: Guilherme Lisboa Date: Thu, 14 Feb 2019 12:01:32 -0500 Subject: [PATCH] fix: fix typings for cards.d.ts (#840) --- typings/components/Card.d.ts | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/typings/components/Card.d.ts b/typings/components/Card.d.ts index 33819da88a..a11684d6fd 100644 --- a/typings/components/Card.d.ts +++ b/typings/components/Card.d.ts @@ -1,7 +1,9 @@ import * as React from 'react'; -import { ImageProps, ViewProps } from 'react-native'; + +import { ImageProps, StyleProp, TextStyle, ViewProps, ViewStyle } from 'react-native'; +import { StyledProps } from 'types/styled-components'; + import { ThemeShape } from '../types'; -import { AvatarIcon } from './Avatar'; export interface CardContentProps extends ViewProps { }