namirasoft-node 1.4.13 → 1.4.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -87,5 +87,5 @@ export declare abstract class BaseDatabase {
87
87
  }, idatabase: IFilterableDatabase<WhereOptions>, filters?: FilterItem[] | undefined): {
88
88
  [table: string]: WhereOptions[];
89
89
  };
90
- abstract getSortOption(sorts?: SortItem[] | undefined): any[];
90
+ abstract getSortOption(sorts?: SortItem[] | undefined): any;
91
91
  }
package/package.json CHANGED
@@ -8,7 +8,7 @@
8
8
  "framework": "npm",
9
9
  "application": "package",
10
10
  "private": false,
11
- "version": "1.4.13",
11
+ "version": "1.4.14",
12
12
  "author": "Amir Abolhasani",
13
13
  "license": "MIT",
14
14
  "main": "./dist/index.js",
@@ -196,5 +196,5 @@ export abstract class BaseDatabase
196
196
  }
197
197
  return ans;
198
198
  }
199
- public abstract getSortOption(sorts?: SortItem[] | undefined): any[];
199
+ public abstract getSortOption(sorts?: SortItem[] | undefined): any;
200
200
  }