Skip to content

Commit cfc2c94

Browse files
committed
Update generated types
1 parent 881a259 commit cfc2c94

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

generatedTypes/components/hint/index.d.ts

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import React, { Component, ReactElement, ElementRef } from 'react';
2-
import { Animated, GestureResponderEvent, ImageSourcePropType, ImageStyle, StyleProp, TextStyle, ViewStyle, LayoutChangeEvent, View as ViewRN } from 'react-native';
2+
import { Animated, GestureResponderEvent, ImageSourcePropType, ImageStyle, StyleProp, TextStyle, ViewStyle, LayoutChangeEvent, View as RNView } from 'react-native';
33
declare enum TARGET_POSITIONS {
44
LEFT = "left",
55
RIGHT = "right",
@@ -111,17 +111,17 @@ declare class Hint extends Component<HintProps, HintState> {
111111
position: HintPositions;
112112
};
113113
static positions: typeof HintPositions;
114-
targetRef: ElementRef<typeof ViewRN> | null;
115-
hintRef: ElementRef<typeof ViewRN> | null;
114+
targetRef: ElementRef<typeof RNView> | null;
115+
hintRef: ElementRef<typeof RNView> | null;
116116
state: {
117117
targetLayoutInWindow: undefined;
118118
targetLayout: HintTargetFrame | undefined;
119119
};
120120
visibleAnimated: Animated.Value;
121121
componentDidUpdate(prevProps: HintProps): void;
122122
focusAccessibilityOnHint: () => void;
123-
setTargetRef: (ref: ElementRef<typeof ViewRN>) => void;
124-
setHintRef: (ref: ElementRef<typeof ViewRN>) => void;
123+
setTargetRef: (ref: ElementRef<typeof RNView>) => void;
124+
setHintRef: (ref: ElementRef<typeof RNView>) => void;
125125
onTargetLayout: ({ nativeEvent: { layout } }: LayoutChangeEvent) => void;
126126
getAccessibilityInfo(): {
127127
accessible: boolean;

0 commit comments

Comments
 (0)