Interface ISplitTextCallbacksMap

Callbacks map for the SplitText module

interface ISplitTextCallbacksMap {
    beforeSplit: undefined;
    destroy: undefined;
    props: Partial<IModuleMutableProps>;
    split: undefined;
}

Hierarchy (View Summary)

Properties

beforeSplit: undefined

Called before the text is split.

destroy: undefined

Triggered when the module is destroyed.

props: Partial<IModuleMutableProps>

Triggered when the module's properties are updated. Receives the diff (changed keys and new values) as the first argument.

split: undefined

Called after the text has been split.