Files
WAI_Project_UNIX/uni_modules/cool-ui/components/cl-countdown/props.ts
2025-07-21 16:47:04 +08:00

20 lines
393 B
TypeScript

import type { PassThroughProps } from "../../types";
export type ClCountdownPassThrough = {
className?: string;
text?: PassThroughProps;
splitor?: PassThroughProps;
};
export type ClCountdownProps = {
className?: string;
pt?: ClCountdownPassThrough;
format?: string;
hideZero?: boolean;
day?: number;
hour?: number;
minute?: number;
second?: number;
datetime?: Date | string;
};