Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
acoates-ms committed May 23, 2024
1 parent c2fe647 commit 1623756
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/react-native/Libraries/ReactNative/AppRegistry.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

import type * as React from 'react';
import type {IPerformanceLogger} from '../Utilities/IPerformanceLogger';
import type {ViewStyleProp} from '../StyleSheet/StyleSheet';
import type {ViewStyle} from '../StyleSheet/StyleSheetTypes';

type Task = (taskData: any) => Promise<void>;
type TaskProvider = () => Task;
Expand Down Expand Up @@ -37,7 +37,7 @@ export type WrapperComponentProvider = (

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

/**
* `AppRegistry` is the JS entry point to running all React Native apps. App
Expand Down

0 comments on commit 1623756

Please sign in to comment.