vuechrts 0.0.13 → 0.0.14
Sign up to get free protection for your applications and to get access to all the features.
- package/dist/components/Base/Donut.vue.d.ts +36 -0
- package/dist/index.js +3077 -2591
- package/dist/index.umd.cjs +133 -72
- package/package.json +1 -1
@@ -0,0 +1,36 @@
|
|
1
|
+
declare function __VLS_template(): {
|
2
|
+
default?(_: {}): any;
|
3
|
+
};
|
4
|
+
declare const __VLS_component: import('vue').DefineComponent<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
5
|
+
type?: string;
|
6
|
+
data: number[];
|
7
|
+
radius: number;
|
8
|
+
labels: {
|
9
|
+
name: string;
|
10
|
+
color: string;
|
11
|
+
}[];
|
12
|
+
}>>, {}, {}, {}, {}, import('vue').ComponentOptionsMixin, import('vue').ComponentOptionsMixin, {}, string, import('vue').PublicProps, Readonly<import('vue').ExtractPropTypes<__VLS_TypePropsToRuntimeProps<{
|
13
|
+
type?: string;
|
14
|
+
data: number[];
|
15
|
+
radius: number;
|
16
|
+
labels: {
|
17
|
+
name: string;
|
18
|
+
color: string;
|
19
|
+
}[];
|
20
|
+
}>>> & Readonly<{}>, {}, {}, {}, {}, string, import('vue').ComponentProvideOptions, true, {}, any>;
|
21
|
+
declare const _default: __VLS_WithTemplateSlots<typeof __VLS_component, ReturnType<typeof __VLS_template>>;
|
22
|
+
export default _default;
|
23
|
+
type __VLS_NonUndefinedable<T> = T extends undefined ? never : T;
|
24
|
+
type __VLS_TypePropsToRuntimeProps<T> = {
|
25
|
+
[K in keyof T]-?: {} extends Pick<T, K> ? {
|
26
|
+
type: import('vue').PropType<__VLS_NonUndefinedable<T[K]>>;
|
27
|
+
} : {
|
28
|
+
type: import('vue').PropType<T[K]>;
|
29
|
+
required: true;
|
30
|
+
};
|
31
|
+
};
|
32
|
+
type __VLS_WithTemplateSlots<T, S> = T & {
|
33
|
+
new (): {
|
34
|
+
$slots: S;
|
35
|
+
};
|
36
|
+
};
|