Skip to content

Commit

Permalink
fix DataModelBase.silent() return value (#154)
Browse files Browse the repository at this point in the history
* fix DataModelBase.silent() return value

* 2.10.4
  • Loading branch information
kbarbounakis authored Jun 9, 2023
1 parent 95f706c commit f813347
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion data.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -339,7 +339,7 @@ export interface DataModelBase extends DataModelProperties, SequentialEventEmitt
inferState(obj: any, callback: (err?: Error, res?: any) => void): void;
inferStateAsync(obj: any): Promise<any>;
insert(obj: any | any[]): Promise<any>;
silent(value?: boolean): DataModel;
silent(value?: boolean): this;
isSilent(): boolean;
migrate(callback: (err?: Error, res?: boolean) => void): void;
migrateAsync(): Promise<boolean>;
Expand Down
4 changes: 2 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@themost/common",
"version": "2.10.3",
"version": "2.10.4",
"description": "MOST Web Framework Codename Blueshift - Common Module",
"main": "index.js",
"types": "index.d.ts",
Expand Down

0 comments on commit f813347

Please sign in to comment.