We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d8c7019 commit bb7856bCopy full SHA for bb7856b
index.d.ts
@@ -65,7 +65,7 @@ interface EggMySQL {
65
/// create object into table
66
create: (table: string, values: object) => Promise<EggMySQLUpdateResult>;
67
/// update object of table
68
- update: (table: string, values: object) => Promise<EggMySQLUpdateResult>;
+ update: (table: string, values: object, condition?: EggMySQLCondition) => Promise<EggMySQLUpdateResult>;
69
/// delete objects from table
70
delete: (table: string, values: object) => Promise<EggMySQLUpdateResult>;
71
/// insert object into table
0 commit comments