nexorm
Version:
A powerful TypeScript ORM with advanced features.
4 lines (3 loc) • 367 B
TypeScript
import { Model, ModelStatic } from "sequelize";
import type { UpdateMethodsOptions, UpdateOptions, RulesOptions, StaticProps } from '../decorator';
export declare function updateMany(model: ModelStatic<Model<any, any>>, where: StaticProps<any>, update: UpdateOptions<any>, rules: RulesOptions<any>, options: UpdateMethodsOptions, schema: any): Promise<any[] | null>;