UNPKG

@microsoft/omnichannel-chat-sdk

Version:
27 lines (26 loc) 664 B
import { IErrorEventSubscriber } from "../../external/ACSAdapter/IErrorEventSubscriber"; interface ChatAdapterOptionalParams { protocol?: string; IC3Adapter?: { options?: { [key: string]: any; }; }; ACSAdapter?: { fileScan?: { disabled?: boolean; pollingInterval?: number; scanStatusRetrievalDelay?: number; }; options?: { [key: string]: any; }; errorEventSubscriber?: IErrorEventSubscriber; }; DirectLine?: { options?: { [key: string]: any; }; }; } export default ChatAdapterOptionalParams;