UNPKG

170 BTypeScriptView Raw
1import { NativeModules } from "react-native";
2
3const { RNRestart } = NativeModules;
4
5type RestartType = {
6 Restart(): void;
7};
8
9export default RNRestart as RestartType;