Files
react-navigation/example/types/react-native-web.d.ts
2020-05-26 16:07:47 +02:00

17 lines
354 B
TypeScript

declare module 'react-native-web' {
export const AppRegistry: {
registerComponent(
name: string,
callback: () => React.ComponentType<any>
): void;
getApplication(
name: string,
options?: { initialProps: object }
): {
element: React.ReactElement;
getStyleElement(): React.ReactElement;
};
};
}