xjs-common 13.3.0 → 13.3.1

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.
@@ -15,6 +15,10 @@ export declare namespace UObj {
15
15
  * @param op.removeKeys if true, it removes `keys` instead of remaining it.
16
16
  * @param op.recursive whether it crops properties of an object recursively. default is false.
17
17
  */
18
+ function crop<T extends NormalRecord>(o: T, keys: IndexSignature[], op: {
19
+ removeKeys: true;
20
+ recursive: true;
21
+ }): Partial<T>;
18
22
  function crop<T extends NormalRecord>(o: T, keys: (keyof T)[], op?: {
19
23
  removeKeys?: boolean;
20
24
  recursive?: boolean;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "xjs-common",
3
- "version": "13.3.0",
3
+ "version": "13.3.1",
4
4
  "description": "library modules for typescript that bundled general-purpose implementations.",
5
5
  "repository": {
6
6
  "type": "git",