@ztimson/utils 0.24.6 → 0.24.7

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 CHANGED
@@ -16,3 +16,9 @@
16
16
  * @return {Array<keyof T>} Available keys
17
17
  */
18
18
  export declare function typeKeys<T extends object>(): Array<keyof T>;
19
+ /**
20
+ * Mark all properties as writable
21
+ */
22
+ export type Writable<T> = {
23
+ -readonly [P in keyof T]: T[P];
24
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ztimson/utils",
3
- "version": "0.24.6",
3
+ "version": "0.24.7",
4
4
  "description": "Utility library",
5
5
  "author": "Zak Timson",
6
6
  "license": "MIT",