Documentation
    Preparing search index...

    Type Alias SQLiteUpdateWithJoins<T, TDynamic, TFrom>

    SQLiteUpdateWithJoins: TDynamic extends true
        ? T
        : Omit<
            SQLiteUpdateBase<
                T["_"]["table"],
                T["_"]["resultType"],
                T["_"]["runResult"],
                TFrom,
                T["_"]["returning"],
                TDynamic,
                Exclude<
                    T["_"]["excludedMethods"]
                    | "from",
                    "leftJoin" | "rightJoin" | "innerJoin" | "fullJoin",
                >,
            >,
            Exclude<
                T["_"]["excludedMethods"]
                | "from",
                "leftJoin" | "rightJoin" | "innerJoin" | "fullJoin",
            >,
        >

    Type Parameters