From cdcaeda67c3fa56ceff9d9ad420b92be38f52383 Mon Sep 17 00:00:00 2001 From: ztimson Date: Mon, 12 May 2025 18:00:12 -0400 Subject: [PATCH] + Added writable --- package.json | 2 +- src/types.ts | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index e4e4010..f05b7bb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "@ztimson/utils", - "version": "0.24.6", + "version": "0.24.7", "description": "Utility library", "author": "Zak Timson", "license": "MIT", diff --git a/src/types.ts b/src/types.ts index 4aa7fca..d46e47a 100644 --- a/src/types.ts +++ b/src/types.ts @@ -22,6 +22,6 @@ export function typeKeys() { /** * Mark all properties as writable */ -type Writable = { +export type Writable = { -readonly [P in keyof T]: T[P] };