vevet
Version:
Vevet is a JavaScript library for creative development that simplifies crafting rich interactions like split text animations, carousels, marquees, preloading, and more.
22 lines (17 loc) • 409 B
text/typescript
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;
}