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 91d6659 commit b8524b1Copy full SHA for b8524b1
types/vue-data-ui.d.ts
@@ -2413,7 +2413,7 @@ declare module "vue-data-ui" {
2413
2414
export const VueUiAnnotator: DefineComponent<{
2415
config?: VueUiAnnotatorConfig;
2416
- dataset: VueUiAnnotatorDataset;
+ dataset?: VueUiAnnotatorDataset;
2417
}>;
2418
2419
export type VueUiDashboardConfig = {
types/vue-ui-annotator.d.ts
@@ -0,0 +1,14 @@
1
+import { DefineComponent } from 'vue';
2
+
3
+export type {
4
+ VueUiAnnotatorConfig,
5
+ VueUiAnnotatorDataset
6
+} from "./vue-data-ui";
7
8
+declare const VueUiAnnotator: DefineComponent<{
9
+ config?: VueUiAnnotatorConfig;
10
11
+}>;
12
13
+export default VueUiAnnotator;
14
+export { VueUiAnnotator };
0 commit comments