@webex/cc-components 1.28.0-ccwidgets.37 → 1.28.0-ccwidgets.39

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,17 +0,0 @@
1
- import { ILogger, IContactCenter } from '@webex/cc-store';
2
- export interface IOutdialCall {
3
- /**
4
- * Function to start outdial call.
5
- */
6
- startOutdial: (destination: string) => void;
7
- /**
8
- * CC SDK Instance.
9
- */
10
- cc: IContactCenter;
11
- /**
12
- * Logger instance for logging purpose.
13
- */
14
- logger: ILogger;
15
- }
16
- export type OutdialCallComponentProps = Pick<IOutdialCall, 'startOutdial'>;
17
- export type useOutdialCallProps = Pick<IOutdialCall, 'cc' | 'logger'>;