├── .gitignore ├── LICENSE ├── README.md ├── package.json ├── src ├── BackgroundTimer.ts └── index.tsx ├── tsconfig.json └── tslint.json /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/react-native-user-inactivity/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/react-native-user-inactivity/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/react-native-user-inactivity/HEAD/README.md -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/react-native-user-inactivity/HEAD/package.json -------------------------------------------------------------------------------- /src/BackgroundTimer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/react-native-user-inactivity/HEAD/src/BackgroundTimer.ts -------------------------------------------------------------------------------- /src/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/react-native-user-inactivity/HEAD/src/index.tsx -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/react-native-user-inactivity/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tslint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/jkomyno/react-native-user-inactivity/HEAD/tslint.json --------------------------------------------------------------------------------