Skip to content

Commit

Permalink
Fixing types.
Browse files Browse the repository at this point in the history
  • Loading branch information
halilb committed Apr 26, 2020
1 parent 1793f09 commit 911913a
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions types/types.d.ts
@@ -1,11 +1,11 @@
declare module 'react-native-textinput-effects' {
declare module "react-native-textinput-effects" {
import {
TextInputProps,
ViewStyle,
StyleProp,
TextStyle,
EasingFunction,
} from 'react-native';
} from "react-native";

class BaseClass<T extends CommonProps> extends React.Component<T> {
inputRef(): TextInputProps;
Expand Down Expand Up @@ -47,7 +47,7 @@ declare module 'react-native-textinput-effects' {
iconSize?: number;
}

export interface AkiraProps extends WithIconProps {
export interface AkiraProps extends CommonProps {
borderColor?: string;
labelHeight?: number;
}
Expand Down Expand Up @@ -117,6 +117,7 @@ declare module 'react-native-textinput-effects' {
class Makiko extends BaseClass<MakikoProps> {}

export interface SaeProps extends WithIconProps {
iconName?: string;
labelHeight?: number;
borderHeight?: number;
}
Expand Down

0 comments on commit 911913a

Please sign in to comment.