js-util

Home > rc-js-util > TWriteable

TWriteable type

Removes readonly from an object.

Signature:

export declare type TWriteable<T> = {
    -readonly [P in keyof T]: T[P];
};