vevet
Version:
Vevet is a JavaScript library for creative development that simplifies crafting rich interactions like split text animations, carousels, marquees, preloading, and more.
14 lines • 426 B
TypeScript
export interface ISnapSlideProps {
/**
* Size of the slide in pixels or 'auto'. 'auto' detects slide size depending on the element or container size.
* Supports css units like `px`, `rem`, `vw`, `vh`, `svh`.
* @default 'auto'
*/
size?: number | 'auto' | (string & {});
/**
* If the slide is virtual
* @default false
*/
virtual?: boolean;
}
//# sourceMappingURL=types.d.ts.map