props.ts 393 B

12345678910111213141516171819
  1. import type { PassThroughProps } from "../../types";
  2. export type ClCountdownPassThrough = {
  3. className?: string;
  4. text?: PassThroughProps;
  5. splitor?: PassThroughProps;
  6. };
  7. export type ClCountdownProps = {
  8. className?: string;
  9. pt?: ClCountdownPassThrough;
  10. format?: string;
  11. hideZero?: boolean;
  12. day?: number;
  13. hour?: number;
  14. minute?: number;
  15. second?: number;
  16. datetime?: Date | string;
  17. };