UNPKG

@wulperstudio/chat

Version:
8 lines (7 loc) 307 B
import React from "react"; import { ChatActionType, InitialStateModel } from "./chatReducer"; export declare const ChatContext: React.Context<{ state: InitialStateModel; dispatch: React.Dispatch<ChatActionType>; } | null>; export declare const ChatProviderContext: React.FunctionComponent<unknown>;