@antv/g2plot
Version:
An interactive and responsive charting library
15 lines (13 loc) • 385 B
text/typescript
export * from './common';
export * from './tooltip';
export * from './state';
export * from './attr';
export * from './statistic';
export * from './meta';
export * from './axis';
export * from './interaction';
export * from './annotation';
export * from './locale';
export * from './button';
/** 去除 readonly 修饰 */
export type Writable<T> = { -readonly [P in keyof T]: T[P] };