File tree Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Expand file tree Collapse file tree 3 files changed +11
-11
lines changed Original file line number Diff line number Diff line change @@ -97,9 +97,6 @@ declare const colorObject: Colors & {
97
97
orange30 : string ;
98
98
orange40 : string ;
99
99
orange50 : string ;
100
- /**
101
- * Get app's current color scheme
102
- */
103
100
orange60 : string ;
104
101
orange70 : string ;
105
102
orange80 : string ;
@@ -113,14 +110,6 @@ declare const colorObject: Colors & {
113
110
red80 : string ;
114
111
purple10 : string ;
115
112
purple20 : string ;
116
- /**
117
- * Add alpha to hex or rgb color
118
- * arguments:
119
- * p1 - hex color / R part of RGB
120
- * p2 - opacity / G part of RGB
121
- * p3 - B part of RGB
122
- * p4 - opacity
123
- */
124
113
purple30 : string ;
125
114
purple40 : string ;
126
115
purple50 : string ;
Original file line number Diff line number Diff line change
1
+ interface Props {
2
+ style : any ;
3
+ }
4
+ interface Component {
5
+ props : Props ;
6
+ }
7
+ declare const findStyle : < T > ( key : string , component : Component ) => T ;
8
+ export { findStyle } ;
Original file line number Diff line number Diff line change
1
+ export * from '@testing-library/react-native' ;
2
+ import { findStyle } from './helper' ;
3
+ export { findStyle } ;
You can’t perform that action at this time.
0 commit comments