@nyaomaru/divider
    Preparing search index...

    Type Alias DividerReturn<T, TArgs>

    DividerReturn: T extends StringInput
        ? DividerStringResult
        : TArgs["length"] extends 0
            ? T
            : HasFlattenOption<ExtractedDividerOptions<TArgs>> extends true
                ? DividerStringResult
                : DividerArrayResult

    Computes the divider return type based on the input and provided arguments.

    WHY: When no arguments are provided, divider returns the input as-is for string arrays. This type keeps the signature aligned with runtime behavior.

    Type Parameters