Documentation
    Preparing search index...

    Type Alias SQLiteUpdateWithout<T, TDynamic, K>

    SQLiteUpdateWithout: TDynamic extends true
        ? T
        : Omit<
            SQLiteUpdateBase<
                T["_"]["table"],
                T["_"]["resultType"],
                T["_"]["runResult"],
                T["_"]["from"],
                T["_"]["returning"],
                TDynamic,
                T["_"]["excludedMethods"]
                | K,
            >,
            T["_"]["excludedMethods"] | K,
        >

    Type Parameters