UNPKG

@interactify-live/player-react-native

Version:

React Native library for Interactify player with media display, widgets, and MQTT integration

10 lines (9 loc) 225 B
export declare class Observable<T> { private callbacks; private value; constructor(value: T); set(value: T): this; get(): T; subscribe(callback: (value: T) => void): () => void; destroy(): void; }