timered-counter
Version:
Make the value change more vivid and natural
15 lines (14 loc) • 695 B
TypeScript
import { FunctionalComponent, Slot } from 'vue';
import type { TimeredCounterNumber as WCTimeredCounterNumber } from '../../timered-counter-number.js';
import '../../timered-counter-number.js';
type ComponentProps = Pick<WCTimeredCounterNumber, 'localeNumber' | 'animationOptions' | 'keyframes' | 'cellStyles' | 'digitStyles' | 'partStyles' | 'color' | 'partsOptions' | 'value' | 'oldValue' | 'initialValue' | 'locale'>;
type Events = {
'timeredCounterAnimationStart'(): void;
'timeredCounterAnimationEnd'(): void;
};
type Slots = {
prefix: Slot;
suffix: Slot;
};
export declare const TimeredCounterNumber: FunctionalComponent<ComponentProps, Events, Partial<Slots>>;
export {};