motion-plus-vue
Version:
Motion Plus Vue
16 lines (15 loc) • 846 B
TypeScript
import { MotionProps } from 'motion-v';
export interface AnimateNumberProps {
locales?: Intl.LocalesArgument;
format?: Omit<Intl.NumberFormatOptions, 'notation'> & {
notation?: Exclude<Intl.NumberFormatOptions['notation'], 'scientific' | 'engineering'>;
};
transition?: MotionProps['transition'];
suffix?: string;
prefix?: string;
value?: number | bigint | string;
style?: MotionProps['style'];
layoutDependency?: MotionProps['layoutDependency'];
}
declare const _default: import('vue').DefineComponent<AnimateNumberProps, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<AnimateNumberProps> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;