/** * Remove readonly modifier from a type */ export declare type Writeable = { -readonly [P in keyof T]: T[P]; };