@sunrise-upc/mobile-prod-card 1.2.4-beta.24 → 1.2.4-beta.26

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,2 @@
1
+ import React from "react";
2
+ export declare const IndividualLineCheck: React.ForwardRefExoticComponent<Pick<any, string | number | symbol> & React.RefAttributes<HTMLInputElement>>;
@@ -0,0 +1,6 @@
1
+ /// <reference types="react" />
2
+ export interface LineCheckOverlaySchema {
3
+ props: any;
4
+ }
5
+ declare const LineCheckOverlay: ({ props }: LineCheckOverlaySchema) => JSX.Element;
6
+ export default LineCheckOverlay;
@@ -1,4 +1,4 @@
1
- import { FC } from 'react';
2
- import './LineCheck.css';
1
+ import { FC } from "react";
2
+ import "./LineCheck.css";
3
3
  declare const LineCheckV3: FC<any>;
4
4
  export default LineCheckV3;
@@ -0,0 +1,18 @@
1
+ /// <reference types="react" />
2
+ import "./LineCheck.css";
3
+ interface successInterface {
4
+ content: string | JSX.Element;
5
+ isLoading: boolean;
6
+ uploadDownload: MaxDownloadUploadSpeed | Partial<MaxDownloadUploadSpeed>;
7
+ textContent: any;
8
+ eligibleBundle: any;
9
+ tooltipcontent: string | JSX.Element;
10
+ onModemDetailsClick?: () => any;
11
+ onSuccess?: any;
12
+ }
13
+ interface MaxDownloadUploadSpeed {
14
+ maxBandwidthDown: number;
15
+ maxBandwidthUp: number;
16
+ }
17
+ declare const Success: ({ content, uploadDownload, textContent, eligibleBundle, tooltipcontent, onModemDetailsClick, onSuccess, }: successInterface) => JSX.Element;
18
+ export default Success;