/** * Opposite of {@link Readonly}. * * This utility type allows you to create a type with all properties of T set to writable. */ export type Writable = { -readonly [K in keyof T]: T[K]; };