import { Equals } from "../type"; import { If } from "../boolean"; /** * Picks the mutable (i.e. non-readonly) properties of `T`. * * @since 0.0.2 */ export type PickMutable = { [K in keyof T as If, K>]: T[K]; }; //# sourceMappingURL=pick-mutable.d.ts.map