Interface ChatClientProviderProps

Props for the ChatClientProvider component.

interface ChatClientProviderProps {
    children?: ReactNode | ReactNode[];
    client: ChatClient;
}

Properties

Properties

children?: ReactNode | ReactNode[]

The child components to be rendered within this provider.

client: ChatClient

An instance of the ChatClient to be used in the provider.