Type alias Draft<T>

Draft<T>: {
    -readonly [P in keyof T]?: T[P]
}

Make all properties in T non-readonly.

Type Parameters

  • T

    Type in which properties will be non-readonly.

Generated using TypeDoc