@vinejs/vine - v4.2.0
    Preparing search index...

    Type Alias WordCase<S, C>

    WordCase: {
        pascal: Capitalize<WordCase<S, "lower"> & string>;
        lower: Lowercase<S & string>;
    }[C]

    Converts a word to the specified case (PascalCase or lowercase). Used for transforming individual words before joining.

    Type Parameters

    • S
    • C extends "pascal" | "lower"