File tree Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Expand file tree Collapse file tree 1 file changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -2926,6 +2926,7 @@ declare module "vue-data-ui" {
29262926 > ;
29272927
29282928 export type VueUiScatterDatasetValueItem = {
2929+ [ key : string ] : any ;
29292930 name : string ;
29302931 x : number ;
29312932 y : number ;
@@ -2934,6 +2935,7 @@ declare module "vue-data-ui" {
29342935 } ;
29352936
29362937 export type VueUiScatterDatasetItem = {
2938+ [ key : string ] : any ;
29372939 name : string ;
29382940 values : VueUiScatterDatasetValueItem [ ] ;
29392941 color ?: string ;
@@ -3118,12 +3120,14 @@ declare module "vue-data-ui" {
31183120 } ;
31193121
31203122 export type VueUiScatterDatapoint = {
3123+ [ key : string ] : any ;
31213124 clusterName : string | undefined ;
31223125 color : string ;
31233126 deviation : number ;
31243127 id : string ;
31253128 shape : Shape | null ;
31263129 v : {
3130+ [ key : string ] : any ;
31273131 x : number ;
31283132 y : number ;
31293133 name : string ;
@@ -3688,6 +3692,7 @@ declare module "vue-data-ui" {
36883692 } ;
36893693
36903694 export type VueUiXyDatasetItem = {
3695+ [ key : string ] : any ; // which can be recovered through the #svg slot
36913696 name : string ;
36923697 series : Array < number | null > ;
36933698 type : "bar" | "line" | "plot" ;
@@ -7789,6 +7794,7 @@ declare module "vue-data-ui" {
77897794 } > ;
77907795
77917796 export type VueUiStackbarDatasetItem = {
7797+ [ key : string ] : any ; // To be recovered through the #svg slot
77927798 name : string ;
77937799 series : Array < number | null > ;
77947800 color ?: string ;
You can’t perform that action at this time.
0 commit comments