Skip to content

Commit

Permalink
Fix on load start data type.
Browse files Browse the repository at this point in the history
  • Loading branch information
peeterkask committed Sep 6, 2024
1 parent 4085057 commit 3aa9ff6
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions src/specs/VideoNativeComponent.ts
Original file line number Diff line number Diff line change
Expand Up @@ -162,9 +162,11 @@ type OnLoadData = Readonly<{
}>;

export type OnLoadStartData = Readonly<{
isNetwork: boolean;
type: string;
uri: string;
src: {
isNetwork: boolean;
type: string;
uri: string;
};
}>;

export type OnVideoAspectRatioData = Readonly<{
Expand Down

0 comments on commit 3aa9ff6

Please sign in to comment.