mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-01-13 09:30:30 +08:00
<img width="740" alt="Screen Shot 2020-05-20 at 16 31 30" src="https://user-images.githubusercontent.com/1174278/82458770-673d8880-9ab7-11ea-81d3-8ac0c1e52705.png">
17 lines
354 B
TypeScript
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;
|
|
};
|
|
};
|
|
}
|