File tree Expand file tree Collapse file tree 3 files changed +13
-2
lines changed
Expand file tree Collapse file tree 3 files changed +13
-2
lines changed Original file line number Diff line number Diff line change 11# Changelog of ` @reason-react-native/clipboard `
22
3+ ## 1.5.0 - 2020-11-06
4+
5+ - Added ` hasString `
6+ - Added ` hasURL `
7+
38## 1.2.0 - 2020-04-02
49
510Initial release
Original file line number Diff line number Diff line change 11{
22 "name" : " @reason-react-native/clipboard" ,
3- "version" : " 1.2 .0" ,
3+ "version" : " 1.5 .0" ,
44 "publishConfig" : {
55 "access" : " public"
66 },
77 "peerDependencies" : {
8- "@react-native-community/clipboard" : " ^1.2 .0"
8+ "@react-native-community/clipboard" : " ^1.5 .0"
99 },
1010 "repository" : " https://github.com/reason-react-native/clipboard.git" ,
1111 "license" : " MIT" ,
Original file line number Diff line number Diff line change @@ -4,5 +4,11 @@ external getString: unit => Js.Promise.t(string) = "getString";
44[@ bs . module "@react-native-community/clipboard" ] [@ bs . scope "default" ]
55external setString : string => unit = "setString" ;
66
7+ [@ bs . module "@react-native-community/clipboard" ] [@ bs . scope "default" ]
8+ external hasString : unit => bool = "hasString" ;
9+
10+ [@ bs . module "@react-native-community/clipboard" ] [@ bs . scope "default" ]
11+ external hasURL : unit => bool = "hasURL" ;
12+
713[@ bs . module "@react-native-community/clipboard" ]
814external useClipboard : unit => (string , string => unit ) = "useClipboard" ;
You can’t perform that action at this time.
0 commit comments