UNPKG

react-native-cn-richtext-editor

Version:
20 lines (19 loc) 503 B
import React from 'react'; declare type Props = { children: React.ReactNode; }; declare type State = { error: Error | null; }; export default class RootErrorBoundary extends React.Component<Props, State> { state: { error: null; }; _appLoadingIsMounted: boolean; componentWillMount(): void; _subscribeToGlobalErrors: () => void; _unsubscribeFromGlobalErrors: () => void; componentDidCatch(error: Error): void; render(): {} | null | undefined; } export {};