react-estimated-delivery
Version:
React component for estimated delivery with config and holiday options.
13 lines (12 loc) • 355 B
TypeScript
interface CountdownTimerInfterface {
cutOffTime: string;
currentDate: Date;
timerText: {
[key: string]: string;
};
dateFormat: string;
timezone: string;
orderWithinText: string;
}
declare const CountdownTimer: (props: CountdownTimerInfterface) => import("react/jsx-runtime").JSX.Element;
export default CountdownTimer;