@open-game-system/app-bridge-native
Version:
React Native specific implementation of the app-bridge ecosystem
14 lines (11 loc) • 509 B
TypeScript
import { WebView as WebView$1, CreateStore, BridgeStores, NativeBridge } from '@open-game-system/app-bridge-types';
type WebView = WebView$1;
/**
* Creates a new store with the given configuration according to Plan v4.
*/
declare const createStore: CreateStore;
/**
* Creates a native bridge instance using the BridgeWebView type from types package.
*/
declare function createNativeBridge<TStores extends BridgeStores>(): NativeBridge<TStores>;
export { type WebView, createNativeBridge, createStore };