X-Git-Url: https://git.piment-noir.org/?a=blobdiff_plain;f=src%2Futility-types.ts;h=7ea86042ff796660b57410561bd1b57a2b9c8025;hb=90bd5e4759bd31cc25b6f42e88d07ed05b969cec;hp=d680fa16ddc7e4748a41f2e878def0384eb2e305;hpb=aad2595fd9c26bcb2f0d7a22d06edf56d5b08bdb;p=poolifier.git diff --git a/src/utility-types.ts b/src/utility-types.ts index d680fa16..7ea86042 100644 --- a/src/utility-types.ts +++ b/src/utility-types.ts @@ -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 = { -readonly [P in keyof T]?: T[P] }