@huddle01/react
Version:
The Huddle01 React SDK offers a comprehensive suite of hooks, methods and event listeners that allow for seamless real-time audio and video communication with minimal coding required.
16 lines (13 loc) • 467 B
TypeScript
import * as react_jsx_runtime from 'react/jsx-runtime';
import { HuddleClient } from '@huddle01/web-core';
interface Props {
children: React.ReactNode;
client: HuddleClient;
}
interface HuddleContextType {
huddleClient: HuddleClient;
version: string;
}
declare const useHuddle01: () => HuddleContextType;
declare const HuddleProvider: ({ children, client }: Props) => react_jsx_runtime.JSX.Element;
export { HuddleProvider as H, useHuddle01 as u };