UNPKG

timered-counter

Version:

Make the value change more vivid and natural

15 lines (14 loc) 682 B
import { FunctionalComponent } from 'vue'; import type { TimeredCounterString as WCTimeredCounterString } from '../../timered-counter-string.js'; import '../../timered-counter-string.js'; type ComponentProps = Pick<WCTimeredCounterString, 'animationOptions' | 'keyframes' | 'cellStyles' | 'digitStyles' | 'partStyles' | 'color' | 'partsOptions' | 'value' | 'oldValue' | 'initialValue' | 'locale'>; type Events = { 'timeredCounterAnimationStart'(): void; 'timeredCounterAnimationEnd'(): void; }; type Slots = { prefix: () => any; suffix: () => any; }; export declare const TimeredCounterString: FunctionalComponent<ComponentProps, Events, Partial<Slots>>; export {};