Skip to content

Commit

Permalink
Update PerspectiveTransform type (#40771)
Browse files Browse the repository at this point in the history
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: #40771

Test Plan: -

Reviewed By: javache

Differential Revision: D50133297

Pulled By: arushikesarwani94

fbshipit-source-id: bd742b1bccc5d015e5e8095b1d2b83765fee3d6b
  • Loading branch information
mauriguz authored and facebook-github-bot committed Oct 10, 2023
1 parent 9c5ceea commit 28b089e
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ export interface ShadowStyleIOS {
shadowRadius?: number | undefined;
}

interface PerpectiveTransform {
interface PerspectiveTransform {
perspective: AnimatableNumericValue;
}

Expand Down Expand Up @@ -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 &
Expand Down

0 comments on commit 28b089e

Please sign in to comment.