UNPKG

@xapp/chat-widget

Version:
7 lines (6 loc) 383 B
import 'rollup-plugin-inject-process-env'; import { AsyncActionType } from "../store/actions/types"; import { ChatServer } from "../xapp/ChatServer"; export type ChatServerAsyncActionType = (chatServer: ChatServer) => AsyncActionType; export type ChatServerDispatch = (action: ChatServerAsyncActionType) => void; export declare function useChatServerDispatch(): ChatServerDispatch;