UNPKG

react-native-rnevents

Version:

The package was created for React Native. It allows to open webpages, make a phone call, call using Viber, Whatsapp and Telegram, take a keyboard event for hooks and make hooks components to work.

20 lines (17 loc) 629 B
/************************************************************************ * Copyright (c) Amur * https://github.com/AmurKhoyetsyan/react-native-rnevents.git * * React native RNEvents * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. *************************************************************************/ export interface Events { BackHandler(callback: any): void Keyboard(config: object): any Web(url: string): void Call(option: object): void }; declare const RNEvents = Events; export default RNEvents;