botframework-webchat-component
Version:
React component of botframework-webchat
8 lines • 395 B
TypeScript
import { type MutableRefObject } from 'react';
import { type FocusTranscriptInit } from '../../types/internal/FocusTranscriptInit';
export type ContextType = {
focusTranscriptCallbacksRef: MutableRefObject<((init: FocusTranscriptInit) => Promise<void>)[]>;
};
declare const context: import("react").Context<ContextType>;
export default context;
//# sourceMappingURL=WebChatUIContext.d.ts.map