@sunrise-upc/sales-static-components 0.2.1 → 1.0.0
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.
|
@@ -20,6 +20,7 @@ export interface TimerSchema {
|
|
|
20
20
|
}
|
|
21
21
|
interface Timer {
|
|
22
22
|
content: TimerSchema;
|
|
23
|
+
setTimerExpired?: any;
|
|
23
24
|
}
|
|
24
25
|
export interface timeleft {
|
|
25
26
|
days: string;
|
|
@@ -27,5 +28,5 @@ export interface timeleft {
|
|
|
27
28
|
mins: string;
|
|
28
29
|
sec: string;
|
|
29
30
|
}
|
|
30
|
-
declare const RibbonComponentTimer: ({ content }: Timer) => JSX.Element;
|
|
31
|
+
declare const RibbonComponentTimer: ({ content, setTimerExpired }: Timer) => JSX.Element;
|
|
31
32
|
export default RibbonComponentTimer;
|