UNPKG

animated-charts

Version:

Animated chart web components for all frameworks (React, Angular, Vue, HTML)

12 lines (10 loc) 370 B
import type { Components, JSX } from "../types/components"; interface AnimatedLineChart extends Components.AnimatedLineChart, HTMLElement {} export const AnimatedLineChart: { prototype: AnimatedLineChart; new (): AnimatedLineChart; }; /** * Used to define this component and all nested components recursively. */ export const defineCustomElement: () => void;