+ Added writable
All checks were successful
Build / Build NPM Project (push) Successful in 40s
Build / Tag Version (push) Successful in 8s
Build / Publish Documentation (push) Successful in 35s

This commit is contained in:
Zakary Timson 2025-05-12 18:00:12 -04:00
parent 482c90b53b
commit cdcaeda67c
2 changed files with 2 additions and 2 deletions

View File

@ -1,6 +1,6 @@
{
"name": "@ztimson/utils",
"version": "0.24.6",
"version": "0.24.7",
"description": "Utility library",
"author": "Zak Timson",
"license": "MIT",

View File

@ -22,6 +22,6 @@ export function typeKeys<T extends object>() {
/**
* Mark all properties as writable
*/
type Writable<T> = {
export type Writable<T> = {
-readonly [P in keyof T]: T[P]
};