@karmaniverous/entity-manager 6.4.5 → 6.4.6
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.
- package/dist/index.d.ts +3 -3
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -877,9 +877,9 @@ interface ShardQueryMapBuilderOptions {
|
|
|
877
877
|
*
|
|
878
878
|
* @category Query
|
|
879
879
|
*/
|
|
880
|
-
declare abstract class ShardQueryMapBuilder<Item extends Entity> {
|
|
881
|
-
readonly options:
|
|
882
|
-
constructor(options:
|
|
880
|
+
declare abstract class ShardQueryMapBuilder<Item extends Entity, Options extends ShardQueryMapBuilderOptions> {
|
|
881
|
+
readonly options: Options;
|
|
882
|
+
constructor(options: Options);
|
|
883
883
|
abstract getShardQueryMap(): ShardQueryMap<Item>;
|
|
884
884
|
}
|
|
885
885
|
|
package/package.json
CHANGED