Skip to content

Commit

Permalink
fix: add something to spec, without it CI fails
Browse files Browse the repository at this point in the history
  • Loading branch information
okwasniewski committed Oct 4, 2024
1 parent 98b2fc8 commit c51b4db
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/NativeReactNativeRapier.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
import type { TurboModule } from 'react-native';
import { TurboModuleRegistry } from 'react-native';

export interface Spec extends TurboModule {}
export interface Spec extends TurboModule {
install(): void;
}

export default TurboModuleRegistry.getEnforcing<Spec>('ReactNativeRapier');

0 comments on commit c51b4db

Please sign in to comment.