brick-module
Version:
Better React Native native module development
12 lines (10 loc) • 308 B
text/typescript
/**
* Represents any type (arrays, objects, primitives, etc.)
* Maps to Swift `Any` and Kotlin `Any`
*/
export type Any = any;
/**
* Represents a dictionary/object with string keys and any values
* Maps to Swift `[String: Any]` and Kotlin `WritableMap`
*/
export type AnyObject = Record<string, any>;