We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 846db07 commit 1949a22Copy full SHA for 1949a22
types/vue-data-ui.d.ts
@@ -221,9 +221,9 @@ declare module "vue-data-ui" {
221
annotator?: null | (() => void);
222
csv?: null | ((csvStr?: string) => void);
223
fullscreen?: null | (() => void);
224
- img?: null | ((base64?: string) => void);
+ img?: null | (({ domElement, imageUri, base64 }: { domElement?: string; imageUri?: string; base64?: string} = {}) => void);
225
labels?: null | (() => void);
226
- pdf?: null | ((chart?: HTMLElement) => void);
+ pdf?: null | (({ domElement, imageUri, base64 }: { domElement?: string; imageUri?: string; base64?: string} = {}) => void);
227
sort?: null | (() => void);
228
stack?: null | (() => void);
229
table?: null | (() => void);
0 commit comments