vevet
Version:
Vevet is a JavaScript library for creative development that simplifies crafting rich interactions like split text animations, carousels, marquees, preloading, and more.
24 lines (16 loc) • 397 B
text/typescript
import { ICore } from './core/global';
import { initVevet } from './global/initVevet';
export { initVevet };
/**
* Vevet Core
*
* @group Core
*/
export const vevet = (
typeof window !== 'undefined' ? initVevet() : undefined
) as Readonly<ICore>;
export const app = vevet;
export * from './core/exported';
export * from './utils';
export * from './base';
export * from './components';