@mindly/ui-components 5.29.0 → 5.29.1
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.
|
@@ -4,6 +4,7 @@ type CountdownTimerFeatureProps = {
|
|
|
4
4
|
minutes: number;
|
|
5
5
|
seconds: number;
|
|
6
6
|
onCompleted?: () => void;
|
|
7
|
+
t?: WithTranslation['t'];
|
|
7
8
|
};
|
|
8
|
-
declare const CountdownTimerFeature: FC<CountdownTimerFeatureProps
|
|
9
|
+
declare const CountdownTimerFeature: FC<CountdownTimerFeatureProps>;
|
|
9
10
|
export default CountdownTimerFeature;
|
package/dist/index.d.ts
CHANGED
|
@@ -2167,8 +2167,9 @@ type CountdownTimerFeatureProps = {
|
|
|
2167
2167
|
minutes: number;
|
|
2168
2168
|
seconds: number;
|
|
2169
2169
|
onCompleted?: () => void;
|
|
2170
|
+
t?: WithTranslation['t'];
|
|
2170
2171
|
};
|
|
2171
|
-
declare const CountdownTimerFeature: FC<CountdownTimerFeatureProps
|
|
2172
|
+
declare const CountdownTimerFeature: FC<CountdownTimerFeatureProps>;
|
|
2172
2173
|
|
|
2173
2174
|
declare const _default: React__default.NamedExoticComponent<any>;
|
|
2174
2175
|
|