UNPKG

@freemework/common

Version:

Common library of the Freemework Project.

7 lines (6 loc) 165 B
/** * Remove readonly modifier for all properties in T. Opposite util for `Readonly<T>`. */ export type FUtilUnReadonly<T> = { -readonly [P in keyof T]: T[P]; };