vevet
Version:
Vevet is a JavaScript library for creative development that simplifies crafting rich interactions like split text animations, carousels, marquees, preloading, and more.
33 lines (29 loc) • 751 B
text/typescript
/**
* Application configuration properties for initializing Vevet.
*/
export interface ICoreProps {
/**
* Medium breakpoint in pixels.
* When changing this property, you need to
* update the SASS variable: `$md`. The values must be equal.
* @default 1199
*/
md: number;
/**
* Small breakpoint in pixels.
* When changing this property, you need to
* update the SASS variable: `$sm`. The values must be equal.
* @default 899
*/
sm: number;
/**
* Timeout (in milliseconds) for viewport callbacks debouncing.
* @default 16
*/
resizeDebounce: number;
/**
* If need to apply class names for the root element: such as browser, OS name, etc.
* @default false
*/
applyClassNames: boolean;
}