UNPKG
@duell10111/react-native-image-keyboard
Version:
latest (2.1.3)
next (2.2.0)
2.2.0
2.1.3
2.1.2
2.1.1
2.1.0
Enables clipboard image pasting and GIFs from TextInput.
Duell10111/react-native-image-keyboard
@duell10111/react-native-image-keyboard
/
index.d.ts
16 lines
(12 loc)
•
281 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
import
'react-native'
;
export
interface
onImageChangeEvent { uri :
string
; linkUri :
string
; mime :
string
; data? :
string
; }
declare
module
'react-native'
{
interface
TextInputProps
{
onImageChange
:
(
event : onImageChangeEvent
) =>
void
; } }