@sunrise-upc/mobile-prod-card 1.2.4-beta.24 → 1.2.4-beta.25
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/cjs/components/LineCheckV3/IndividualLineCheck.d.ts +2 -0
- package/dist/cjs/components/LineCheckV3/LineCheckOverlay.d.ts +6 -0
- package/dist/cjs/components/LineCheckV3/LineCheckV3.d.ts +2 -2
- package/dist/cjs/components/LineCheckV3/Success.d.ts +18 -0
- package/dist/cjs/index.js +2 -2
- package/dist/esm/components/LineCheckV3/IndividualLineCheck.d.ts +2 -0
- package/dist/esm/components/LineCheckV3/LineCheckOverlay.d.ts +6 -0
- package/dist/esm/components/LineCheckV3/LineCheckV3.d.ts +2 -2
- package/dist/esm/components/LineCheckV3/Success.d.ts +18 -0
- package/dist/esm/index.js +2 -2
- package/package.json +1 -1
@@ -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;
|