| 2 | import type { TurboModule } from 'react-native'; |
| 3 | |
| 4 | export interface Spec extends TurboModule { |
| 5 | generateJwtToken( |
| 6 | secret: string, |
| 7 | durationMs: number, |
| 8 | email: string | null, |
| 9 | userId: string | null |
| 10 | ): Promise<string>; |
| 11 | } |
| 12 | |
| 13 | // Try to use TurboModule if available (New Architecture) |
| 14 | // Fall back to NativeModules (Old Architecture) |
no outgoing calls
no test coverage detected
searching dependent graphs…