File tree 2 files changed +8
-1
lines changed
2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 13
13
"outDir" : " ./lib" ,
14
14
"forceConsistentCasingInFileNames" : true
15
15
},
16
- "include" : [" src/**/*" ],
16
+ "include" : [" src/**/*" , " types " ],
17
17
"exclude" : [" node_modules" , " dist" ]
18
18
}
Original file line number Diff line number Diff line change
1
+ /* eslint-disable no-unused-vars */
1
2
declare module 'react-dom' {
2
3
export function unstable_batchedUpdates < A , B > (
3
4
callback : ( a : A , b : B ) => any ,
@@ -23,3 +24,9 @@ declare module 'react-native' {
23
24
) : void
24
25
export function unstable_batchedUpdates ( callback : ( ) => any ) : void
25
26
}
27
+
28
+ declare module 'react-is' {
29
+ import * as React from 'react'
30
+ export function isContextConsumer ( value : any ) : value is React . ReactElement
31
+ export function isValidElementType ( value : any ) : value is React . ElementType
32
+ }
You can’t perform that action at this time.
0 commit comments