botframework-webchat-component
Version:
React component of botframework-webchat
12 lines • 635 B
TypeScript
type TranscriptFocusContextType = {
activeDescendantIdState: readonly [string];
focusByActivityKey: (activityKey: boolean | string | undefined, withFocus: boolean | undefined) => void;
focusedActivityKeyState: readonly [string];
focusedExplicitlyState: readonly [boolean];
focusRelativeActivity: (delta: number) => void;
getDescendantIdByActivityKey: (activityKey?: string) => string | undefined;
};
declare const TranscriptFocusContext: import("react").Context<TranscriptFocusContextType>;
export default TranscriptFocusContext;
export type { TranscriptFocusContextType };
//# sourceMappingURL=Context.d.ts.map