UNPKG

react-native-nitro-modules

Version:

Fast, type-safe native modules for React Native with statically compiled JSI bindings.

11 lines (9 loc) 313 B
import type { HybridObject } from './HybridObject' /** * Represents a value of the base `HybridObject` type all other * HybridObjects inherit from. * This is not type-checked to an actual `HybridObject` (boxed). */ export interface AnyHybridObject extends HybridObject<{}> { __anyHybridObjectTag?: never }