@tb-dev/utils 4.0.2 → 4.0.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.
- package/dist/types.d.ts +1 -1
- package/package.json +10 -10
package/dist/types.d.ts
CHANGED
|
@@ -35,5 +35,5 @@ export type Writeable<T> = {
|
|
|
35
35
|
};
|
|
36
36
|
/** Constructs a type consisting of some properties of T set to partial. */
|
|
37
37
|
export type WithPartial<T, K extends keyof T> = Omit<T, K> & Partial<Pick<T, K>>;
|
|
38
|
-
/** Constructs a type consisting of some properties of T set to
|
|
38
|
+
/** Constructs a type consisting of some properties of T set to required. */
|
|
39
39
|
export type WithRequired<T, K extends keyof T> = Omit<T, K> & Required<Pick<T, K>>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tb-dev/utils",
|
|
3
|
-
"version": "4.0.
|
|
3
|
+
"version": "4.0.4",
|
|
4
4
|
"description": "TypeScript utils",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"type": "module",
|
|
@@ -23,18 +23,18 @@
|
|
|
23
23
|
"typescript"
|
|
24
24
|
],
|
|
25
25
|
"devDependencies": {
|
|
26
|
-
"@tb-dev/eslint-config": "^5.4.
|
|
27
|
-
"@types/node": "^22.
|
|
28
|
-
"@vitest/ui": "^2.1.
|
|
29
|
-
"eslint": "^9.
|
|
26
|
+
"@tb-dev/eslint-config": "^5.4.15",
|
|
27
|
+
"@types/node": "^22.8.6",
|
|
28
|
+
"@vitest/ui": "^2.1.4",
|
|
29
|
+
"eslint": "^9.14.0",
|
|
30
30
|
"prettier": "^3.3.3",
|
|
31
|
-
"tslib": "^2.8.
|
|
32
|
-
"typedoc": "^0.26.
|
|
33
|
-
"typedoc-plugin-mdn-links": "^3.3.
|
|
31
|
+
"tslib": "^2.8.1",
|
|
32
|
+
"typedoc": "^0.26.11",
|
|
33
|
+
"typedoc-plugin-mdn-links": "^3.3.6",
|
|
34
34
|
"typescript": "^5.6.3",
|
|
35
|
-
"vite": "^5.4.
|
|
35
|
+
"vite": "^5.4.10",
|
|
36
36
|
"vite-plugin-dts": "^4.3.0",
|
|
37
|
-
"vitest": "^2.1.
|
|
37
|
+
"vitest": "^2.1.4"
|
|
38
38
|
},
|
|
39
39
|
"files": [
|
|
40
40
|
"dist"
|