Provide the type declarations of VChart.
npm install @visactor/vchart-typesProvide the pure TypeScript type declarations of VChart.
``typescript`
import type { xxx } from '@visactor/vchart-types';
Such as:
`typescript`
import type { IBarSeriesSpec } from '@visactor/vchart-types';
You can also find the types in the corresponding path in types and import them:
`typescript`
import type { xxx } from '@visactor/vchart-types/types/xxx';
Such as:
`typescript``
import type { IBarSeriesSpec } from '@visactor/vchart-types/types/series/bar/interface'