UNPKG

@antv/g2

Version:

the Grammar of Graphics in Javascript

5 lines (4 loc) 111 B
/** * Remove readonly modifier from a type */ export type Writeable<T> = { -readonly [P in keyof T]: T[P] };