@types/config 3.3.2 → 3.3.4

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.
Files changed (3) hide show
  1. config/README.md +2 -2
  2. config/index.d.ts +3 -0
  3. config/package.json +8 -3
config/README.md CHANGED
@@ -8,8 +8,8 @@ This package contains type definitions for config (https://github.com/lorenwest/
8
8
  Files were exported from https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/config.
9
9
 
10
10
  ### Additional Details
11
- * Last updated: Wed, 18 Oct 2023 18:04:03 GMT
11
+ * Last updated: Thu, 21 Mar 2024 20:35:57 GMT
12
12
  * Dependencies: none
13
13
 
14
14
  # Credits
15
- These definitions were written by [Roman Korneev](https://github.com/RWander), [Forrest Bice](https://github.com/forrestbice), [James Donald](https://github.com/jndonald3), [Alberto Vasquez](https://github.com/albertovasquez), and [Christian Vaagland Tellnes](https://github.com/tellnes).
15
+ These definitions were written by [Roman Korneev](https://github.com/RWander), [Forrest Bice](https://github.com/forrestbice), [James Donald](https://github.com/jndonald3), [Alberto Vasquez](https://github.com/albertovasquez), [Christian Vaagland Tellnes](https://github.com/tellnes), and [Paritosh Bhatia](https://github.com/ParitoshBh).
config/index.d.ts CHANGED
@@ -11,6 +11,9 @@ declare namespace c {
11
11
  // Return a deep copy of the specified object.
12
12
  cloneDeep(copyFrom: any, depth?: number): any;
13
13
 
14
+ // Set objects given a path as a string list
15
+ setPath(object: object, path: string[], value?: any): void;
16
+
14
17
  // Return true if two objects have equal contents.
15
18
  equalsDeep(object1: any, object2: any, dept?: number): boolean;
16
19
 
config/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@types/config",
3
- "version": "3.3.2",
3
+ "version": "3.3.4",
4
4
  "description": "TypeScript definitions for config",
5
5
  "homepage": "https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/config",
6
6
  "license": "MIT",
@@ -29,6 +29,11 @@
29
29
  "name": "Christian Vaagland Tellnes",
30
30
  "githubUsername": "tellnes",
31
31
  "url": "https://github.com/tellnes"
32
+ },
33
+ {
34
+ "name": "Paritosh Bhatia",
35
+ "githubUsername": "ParitoshBh",
36
+ "url": "https://github.com/ParitoshBh"
32
37
  }
33
38
  ],
34
39
  "main": "",
@@ -40,6 +45,6 @@
40
45
  },
41
46
  "scripts": {},
42
47
  "dependencies": {},
43
- "typesPublisherContentHash": "ae19e33d72a5fe40d7407e485530e3d5ebaf48260e86500189fb001e81d6e57b",
44
- "typeScriptVersion": "4.5"
48
+ "typesPublisherContentHash": "c48f0669147a8a94900327fa9c6f0d6a850de6901a30787160f0071a6eeab8db",
49
+ "typeScriptVersion": "4.7"
45
50
  }