react-native-nitro-modules
Version:
Insanely fast native C++, Swift or Kotlin modules with a statically compiled binding layer to JSI.
11 lines (9 loc) • 313 B
text/typescript
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
}