Files
jindengchen-ai-report/cool-unix/uni_modules/cool-ui/components/cl-rolling-number/props.ts

21 lines
313 B
TypeScript
Raw Normal View History

2025-11-13 10:36:23 +08:00
export type ClRollingNumberProps = {
/**
*
*/
modelValue: number
/**
*
* @default 1000
*/
duration?: number
/**
*
* @default 0
*/
decimals?: number
/**
*
* @default true
*/
autoStart?: boolean
}