motion-v
Version:
<h1 align="center"> <img width="35" height="35" alt="Motion logo" src="https://github.com/user-attachments/assets/00d6d1c3-72c4-4c2f-a664-69da13182ffc" /><br />Motion for Vue</h1>
28 lines (27 loc) • 1.03 kB
TypeScript
import { FeatureBundle } from '../../features/dom-animation';
import { PropType } from 'vue';
type FeaturesProp = FeatureBundle | Promise<FeatureBundle> | (() => Promise<FeatureBundle>);
export declare const LazyMotion: import('vue').DefineComponent<import('vue').ExtractPropTypes<{
features: {
type: PropType<FeaturesProp>;
required: true;
};
strict: {
type: BooleanConstructor;
default: boolean;
};
}>, () => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
[key: string]: any;
}>[], {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<{
features: {
type: PropType<FeaturesProp>;
required: true;
};
strict: {
type: BooleanConstructor;
default: boolean;
};
}>> & Readonly<{}>, {
strict: boolean;
}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
export {};