UNPKG

vevet

Version:

Vevet is a JavaScript library for creative development that simplifies crafting rich interactions like split text animations, carousels, marquees, preloading, and more.

18 lines 460 B
import { ICallbacksMap } from '../Callbacks'; export interface IModuleStaticProps { __staticProp?: null; } export interface IModuleMutableProps { __mutableProp?: null; } export interface IModuleCallbacksMap extends ICallbacksMap { /** * Triggered when the module is destroyed. */ destroy: undefined; /** * Triggered when the module's properties are updated. */ props: undefined; } //# sourceMappingURL=types.d.ts.map