/** * Undo the readonly modifier of a type */ export type Mutable = { -readonly [K in keyof T]: T[K]; }; //# sourceMappingURL=modifiers.d.ts.map