Skip to content

Commit

Permalink
prettier
Browse files Browse the repository at this point in the history
  • Loading branch information
acoates-ms committed May 23, 2024
1 parent 1623756 commit 0dac79c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
*/

import type {RootTag} from './RootTag';
import type { ViewStyleProp } from '../StyleSheet/StyleSheet';
import type {ViewStyleProp} from '../StyleSheet/StyleSheet';

import * as React from 'react';

Expand Down
4 changes: 1 addition & 3 deletions packages/react-native/Libraries/ReactNative/AppRegistry.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,7 @@ export type WrapperComponentProvider = (
appParameters: any,
) => React.ComponentType<any>;

export type RootViewStyleProvider = (
appParameters: any,
) => ViewStyle;
export type RootViewStyleProvider = (appParameters: any) => ViewStyle;

/**
* `AppRegistry` is the JS entry point to running all React Native apps. App
Expand Down
4 changes: 1 addition & 3 deletions packages/react-native/Libraries/ReactNative/AppRegistry.js
Original file line number Diff line number Diff line change
Expand Up @@ -61,9 +61,7 @@ export type Registry = {
export type WrapperComponentProvider = (
appParameters: Object,
) => React$ComponentType<any>;
export type RootViewStyleProvider = (
appParameters: Object,
) => ViewStyleProp;
export type RootViewStyleProvider = (appParameters: Object) => ViewStyleProp;

const runnables: Runnables = {};
let runCount = 1;
Expand Down

0 comments on commit 0dac79c

Please sign in to comment.