Update PerspectiveTransform type (#40771)

Summary:
Very simple change, there's a typo in the word "perspective" whilst naming the possible transform property types.

## Changelog:

[INTERNAL] [FIXED] - Fix typo in PerspectiveTransform type

Pull Request resolved: https://github.com/facebook/react-native/pull/40771

Test Plan: -

Reviewed By: javache

Differential Revision: D50133297

Pulled By: arushikesarwani94

fbshipit-source-id: bd742b1bccc5d015e5e8095b1d2b83765fee3d6b
This commit is contained in:
Mauricio Guzman
2023-10-10 12:12:53 -07:00
committed by Facebook GitHub Bot
parent 9c5ceeaf99
commit 28b089ed3a
@@ -121,7 +121,7 @@ export interface ShadowStyleIOS {
shadowRadius?: number | undefined;
}
interface PerpectiveTransform {
interface PerspectiveTransform {
perspective: AnimatableNumericValue;
}
@@ -180,7 +180,7 @@ type MaximumOneOf<T, K extends keyof T = keyof T> = K extends keyof T
export interface TransformsStyle {
transform?:
| MaximumOneOf<
PerpectiveTransform &
PerspectiveTransform &
RotateTransform &
RotateXTransform &
RotateYTransform &