UNPKG

124 BTypeScriptView Raw
1/**
2 * Remove readonly modifier from a type
3 */
4export declare type Writeable<T> = {
5 -readonly [P in keyof T]: T[P];
6};