UNPKG

react-native-nitro-modules

Version:

Insanely fast native C++, Swift or Kotlin modules with a statically compiled binding layer to JSI.

10 lines 361 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; } //# sourceMappingURL=AnyHybridObject.d.ts.map