// Just some utility types not directly used but exported since immer is// not directly accessible by the user of the library.importtype { Draft } from"immer";
export { Draft };
exporttypeWritableDraft<T> = {
-readonly [K in keyof T]: Draft<T[K]>;
};