Skip to content

Commit 1949a22

Browse files
committed
Types - Update UserOptions type
1 parent 846db07 commit 1949a22

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

types/vue-data-ui.d.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -221,9 +221,9 @@ declare module "vue-data-ui" {
221221
annotator?: null | (() => void);
222222
csv?: null | ((csvStr?: string) => void);
223223
fullscreen?: null | (() => void);
224-
img?: null | ((base64?: string) => void);
224+
img?: null | (({ domElement, imageUri, base64 }: { domElement?: string; imageUri?: string; base64?: string} = {}) => void);
225225
labels?: null | (() => void);
226-
pdf?: null | ((chart?: HTMLElement) => void);
226+
pdf?: null | (({ domElement, imageUri, base64 }: { domElement?: string; imageUri?: string; base64?: string} = {}) => void);
227227
sort?: null | (() => void);
228228
stack?: null | (() => void);
229229
table?: null | (() => void);

0 commit comments

Comments
 (0)