Update dependencies
[poolifier.git] / src / utility-types.ts
index d680fa16ddc7e4748a41f2e878def0384eb2e305..7ea86042ff796660b57410561bd1b57a2b9c8025 100644 (file)
@@ -3,7 +3,7 @@ import type { MessagePort } from 'worker_threads'
 import type { KillBehavior } from './worker/worker-options'
 
 /**
- * Make all properties in T non-readonly
+ * Make all properties in T non-readonly.
  */
 export type Draft<T> = { -readonly [P in keyof T]?: T[P] }