UNPKG

nexorm

Version:

A powerful TypeScript ORM with advanced features.

4 lines (3 loc) 357 B
import { Model, ModelStatic } from "sequelize"; import type { UpdateMethodsOptions, UpdateOptions, RulesOptions, StaticProps } from '../decorator'; export declare function updateOne(model: ModelStatic<Model<any, any>>, where: StaticProps<any>, update: UpdateOptions<any>, rules: RulesOptions<any>, options: UpdateMethodsOptions, schema: any): Promise<any>;