Skip to content

Commit

Permalink
fix: TS types
Browse files Browse the repository at this point in the history
  • Loading branch information
kirillzyusko committed Dec 10, 2024
1 parent d570735 commit c5c9d95
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,8 @@ export type KeyboardEventData = {
duration: number;
timestamp: number;
target: number;
type: TextInputProps["keyboardType"];
type: NonNullable<TextInputProps["keyboardType"]>;
appearance: NonNullable<TextInputProps["keyboardAppearance"]>;
};
export type KeyboardEventsModule = {
addListener: (
Expand Down

0 comments on commit c5c9d95

Please sign in to comment.