motion-plus-vue
Version:
Motion Plus Vue
17 lines (16 loc) • 774 B
TypeScript
import { Justify, KeyedNumberPart } from './types';
import { AnimatePresenceProps, MotionProps } from 'motion-v';
export interface AnimateNumberProps {
parts: (KeyedNumberPart & {
isPresent?: boolean;
})[];
justify?: Justify;
mode?: AnimatePresenceProps['mode'];
name?: 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<{}>, {
justify: Justify;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, false, {}, any>;
export default _default;