interface TextSplitTaskParams {
    realign?: boolean;
    splitBy?: "char" | "word";
    text?: string;
}

Hierarchy (view full)

Properties

realign?: boolean

If realign is true, it sets the left property of each new element in a way that are align side by side.

Use it if the element position is absolute.

Main purpose is to use with transformations.

Valid only for DOM elements.

splitBy?: "char" | "word"
text?: string