UNPKG

@100mslive/roomkit-react

Version:

![Banner](https://github.com/100mslive/web-sdks/blob/06c65259912db6ccd8617f2ecb6fef51429251ec/prebuilt-banner.png)

17 lines (16 loc) 477 B
import React from 'react'; export declare enum PrebuiltStates { MEETING = "meeting", PREVIEW = "preview", LEAVE = "leave" } declare type AppStateContextType = { rejoin: () => void; }; export declare const AppStateContext: React.Context<AppStateContextType>; export declare const useHMSAppStateContext: () => AppStateContextType; export declare const useAppStateManager: () => { activeState: PrebuiltStates | undefined; rejoin: () => void; }; export {};