vuechrts 0.0.11 → 0.0.13

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,22 @@
1
+ declare const _default: <T>(__VLS_props: Awaited<typeof __VLS_setup>["props"], __VLS_ctx?: __VLS_Prettify<Pick<Awaited<typeof __VLS_setup>, "attrs" | "emit" | "slots">>, __VLS_expose?: NonNullable<Awaited<typeof __VLS_setup>>["expose"], __VLS_setup?: Promise<{
2
+ props: __VLS_Prettify<__VLS_OmitKeepDiscriminatedUnion<(Partial<{}> & Omit<{} & import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps, never>) & {
3
+ type?: string;
4
+ data: number[];
5
+ radius: number;
6
+ labels: {
7
+ name: string;
8
+ color: string;
9
+ }[];
10
+ }, keyof import('vue').VNodeProps | keyof import('vue').AllowedComponentProps>> & {} & (import('vue').VNodeProps & import('vue').AllowedComponentProps & import('vue').ComponentCustomProps);
11
+ expose(exposed: import('vue').ShallowUnwrapRef<{}>): void;
12
+ attrs: any;
13
+ slots: ReturnType<() => {
14
+ default?(_: {}): any;
15
+ }>;
16
+ emit: typeof __VLS_emit;
17
+ }>) => import('vue').VNode<import('vue').RendererNode, import('vue').RendererElement, {
18
+ [key: string]: any;
19
+ }> & {
20
+ __ctx?: Awaited<typeof __VLS_setup>;
21
+ };
22
+ export default _default;
package/dist/index.d.ts CHANGED
@@ -1,6 +1,7 @@
1
1
  import { default as AreaChart } from './components/AreaChart.vue';
2
+ import { default as DonutChart } from './components/DonutChart.vue';
2
3
 
3
- export { AreaChart };
4
+ export { AreaChart, DonutChart };
4
5
  declare const _default: {
5
6
  install(app: any): void;
6
7
  };