Skip to content

Writable

Writeable<T> = { -readonly [P in keyof T]: T[P] }

Defined in: packages/isaacscript-common/src/types/Writable.ts:6

Helper type to convert a read-only object into a writable object.

This is the opposite of the built-in Readonly utility type.

T