botframework-webchat-component
Version:
React component of botframework-webchat
9 lines (6 loc) • 302 B
text/typescript
import useSettableDictateAbortable from './internal/useSettableDictateAbortable';
export default function useDictateAbortable(): [boolean] {
// We are only exporting a read-only version of dictateAbortable.
const [dictateAbortable] = useSettableDictateAbortable();
return [dictateAbortable];
}