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