@sunrise-upc/mobile-prod-card 1.2.5-beta.2 → 1.2.5-beta.3

Sign up to get free protection for your applications and to get access to all the features.
@@ -2,6 +2,8 @@
2
2
  export interface LineCheckOverlaySchema {
3
3
  props: any;
4
4
  productName: string;
5
+ handleModalClick: any;
6
+ onSuccess: any;
5
7
  }
6
- declare const LineCheckOverlay: ({ props, productName, }: LineCheckOverlaySchema) => JSX.Element;
8
+ declare const LineCheckOverlay: ({ props, productName, handleModalClick, onSuccess }: LineCheckOverlaySchema) => JSX.Element;
7
9
  export default LineCheckOverlay;
@@ -1,3 +1,3 @@
1
- import { FC } from "react";
1
+ import { FC } from 'react';
2
2
  declare const LincheckModal: FC<any>;
3
3
  export default LincheckModal;
@@ -6,12 +6,11 @@ interface successInterface {
6
6
  textContent: any;
7
7
  eligibleBundle: any;
8
8
  tooltipcontent: string | JSX.Element;
9
- onModemDetailsClick?: () => any;
10
9
  onSuccess?: any;
11
10
  }
12
11
  interface MaxDownloadUploadSpeed {
13
12
  maxBandwidthDown: number;
14
13
  maxBandwidthUp: number;
15
14
  }
16
- declare const Success: ({ content, uploadDownload, textContent, eligibleBundle, tooltipcontent, onModemDetailsClick, onSuccess }: successInterface) => JSX.Element;
15
+ declare const Success: ({ content, uploadDownload, textContent, eligibleBundle, tooltipcontent, onSuccess }: successInterface) => JSX.Element;
17
16
  export default Success;