Skip to content

Commit

Permalink
fix: failing build
Browse files Browse the repository at this point in the history
  • Loading branch information
tewarig committed Nov 14, 2024
1 parent d139e26 commit 500e30f
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,10 @@ import { throwBladeError } from '../logger';
* FireNativeEvent is not supported on react-native
*/

export const fireNativeEvent = (): void => {
export const fireNativeEvent = (
_ref: React.RefObject<HTMLElement> | null,
_eventTypes: Array<'change' | 'input'>,
): void => {
throwBladeError({
message: 'FireNativeEvent is not supported on react-native',
moduleName: 'FireNativeEvent',
Expand Down

0 comments on commit 500e30f

Please sign in to comment.