@wulperstudio/chat
Version:
Wulper Studio Chat Library
8 lines (7 loc) • 307 B
TypeScript
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>;