@microsoft/omnichannel-chat-sdk
Version:
Microsoft Omnichannel Chat SDK
27 lines (26 loc) • 664 B
TypeScript
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;