@quicktvui/quicktvui3 1.2.0-beta.13 → 1.2.0-beta.14

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (34) hide show
  1. package/dist/index.js +9 -8
  2. package/dist/src/button/index.vue.d.ts +21 -21
  3. package/dist/src/classified-list-view/index.vue.d.ts +19 -19
  4. package/dist/src/collapse/index.vue.d.ts +15 -15
  5. package/dist/src/grid-view/index.vue.d.ts +31 -31
  6. package/dist/src/image/index.vue.d.ts +11 -11
  7. package/dist/src/nav-bar/index.vue.d.ts +16 -16
  8. package/dist/src/poster/index.vue.d.ts +16 -19
  9. package/dist/src/qt/QtAPI.d.ts +2 -0
  10. package/dist/src/qtListen/index.d.ts +1 -1
  11. package/dist/src/qtListen/qtDiff.d.ts +1 -1
  12. package/dist/src/qtListen/types.d.ts +1 -1
  13. package/dist/src/qtListen/watch.d.ts +6 -5
  14. package/dist/src/section/index.vue.d.ts +11 -11
  15. package/dist/src/series/component/media-series.vue.d.ts +8 -8
  16. package/dist/src/series/index.vue.d.ts +16 -20
  17. package/dist/src/series/item/media-series-number-item.vue.d.ts +4 -4
  18. package/dist/src/series/item/media-series-text-item.vue.d.ts +4 -4
  19. package/dist/src/tab/index.vue.d.ts +19 -19
  20. package/dist/src/text/index.vue.d.ts +11 -11
  21. package/dist/src/utils/type.d.ts +1 -1
  22. package/dist/src/view/index.vue.d.ts +12 -12
  23. package/dist/src/waterfall/index.vue.d.ts +26 -27
  24. package/dist/src/waterfall/item/card-item.vue.d.ts +1 -1
  25. package/dist/src/waterfall/item/plugin-item.vue.d.ts +12 -12
  26. package/dist/src/waterfall/section/blank-section.vue.d.ts +1 -1
  27. package/dist/src/waterfall/section/card-section.vue.d.ts +1 -1
  28. package/dist/src/waterfall/section/end-section.vue.d.ts +1 -1
  29. package/dist/src/waterfall/section/flex-section.vue.d.ts +6 -9
  30. package/dist/src/waterfall/section/loading-section.vue.d.ts +1 -1
  31. package/dist/src/waterfall/section/plugin-section.vue.d.ts +6 -6
  32. package/dist/src/waterfall/section/section-title.vue.d.ts +4 -4
  33. package/dist/src/waterfall/section/vue-section.vue.d.ts +5 -5
  34. package/package.json +5 -1
@@ -1,9 +1,9 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
- dispatchFunctionBySid: (sid: string, funcName: string, args: Array<import("..").QTNativeParams>) => void;
3
- requestFocus: (direction?: import("..").QTFocusDirection) => void;
4
- requestChildFocus: (position: number, direction?: import("..").QTFocusDirection) => void;
2
+ dispatchFunctionBySid: (sid: string, funcName: string, args: import("..").QTNativeParams[]) => void;
3
+ requestFocus: (direction?: import("..").QTFocusDirection | undefined) => void;
4
+ requestChildFocus: (position: number, direction?: import("..").QTFocusDirection | undefined) => void;
5
5
  clearFocus: () => void;
6
- requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
6
+ requestFocusDirectly: (direction?: import("..").QTFocusDirection | undefined) => void;
7
7
  setVisibility: (v: import("..").QTIViewVisibility) => void;
8
8
  requestRootLayout: () => void;
9
9
  requestLayout: () => void;
@@ -19,11 +19,11 @@ declare const _default: import("vue").DefineComponent<{}, {
19
19
  setPosition: (x: number, y: number, z: number) => void;
20
20
  updateLayout: (width: number, height: number, x: number, y: number) => void;
21
21
  invalidate: () => void;
22
- dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: Array<import("..").QTNativeParams>, delay: number) => void;
23
- setBlockFocusDirections: (directionList: Array<import("..").QTFocusDirectionName>) => void;
24
- setBlockFocusDirectionsOnFail: (directionList: Array<import("..").QTFocusDirectionName>) => void;
25
- setInitFocus: (sid: string, delay?: number) => void;
26
- setAutoFocus: (sid: string, delay?: number) => void;
22
+ dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: import("..").QTNativeParams[], delay: number) => void;
23
+ setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName[]) => void;
24
+ setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName[]) => void;
25
+ setInitFocus: (sid: string, delay?: number | undefined) => void;
26
+ setAutoFocus: (sid: string, delay?: number | undefined) => void;
27
27
  enabledAutofocus: (autofocus: boolean) => void;
28
28
  requestAutofocus: () => void;
29
29
  hasFocus: () => Promise<boolean>;
@@ -35,6 +35,6 @@ declare const _default: import("vue").DefineComponent<{}, {
35
35
  clearMemoryFocused: () => void;
36
36
  showDialog: (show: boolean) => void;
37
37
  onSectionBind: () => void;
38
- viewRef: import("vue").Ref<any, any>;
39
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
38
+ viewRef: import("vue").Ref<any>;
39
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
40
40
  export default _default;
@@ -1,5 +1,5 @@
1
1
  import { ESIMediaSeries } from "@extscreen/es3-component";
2
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
2
+ declare const _default: import("vue").DefineComponent<{
3
3
  customItem: {
4
4
  type: BooleanConstructor;
5
5
  default: boolean;
@@ -24,9 +24,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
24
24
  type: ObjectConstructor;
25
25
  default: () => {};
26
26
  };
27
- }>, {
28
- selectSeries: import("vue").Ref<ESIMediaSeries | undefined, ESIMediaSeries | undefined>;
29
- showOld: import("vue").Ref<boolean, boolean>;
27
+ }, {
28
+ selectSeries: import("vue").Ref<ESIMediaSeries | undefined>;
29
+ showOld: import("vue").Ref<boolean>;
30
30
  onLoadData: (event: any) => void;
31
31
  setPageData: (page: any, data: any) => void;
32
32
  setInitData: (totalCount: any, pageSize: any) => void;
@@ -40,7 +40,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
40
40
  setup: () => void;
41
41
  setGroupSelected: (position: any) => void;
42
42
  release: () => void;
43
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("load-data" | "item-click" | "item-focused" | "group-item-focused")[], "load-data" | "item-click" | "item-focused" | "group-item-focused", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
43
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("load-data" | "item-click" | "item-focused" | "group-item-focused")[], "load-data" | "item-click" | "item-focused" | "group-item-focused", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
44
44
  customItem: {
45
45
  type: BooleanConstructor;
46
46
  default: boolean;
@@ -65,17 +65,17 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
65
65
  type: ObjectConstructor;
66
66
  default: () => {};
67
67
  };
68
- }>> & Readonly<{
68
+ }>> & {
69
69
  "onLoad-data"?: ((...args: any[]) => any) | undefined;
70
70
  "onItem-click"?: ((...args: any[]) => any) | undefined;
71
71
  "onItem-focused"?: ((...args: any[]) => any) | undefined;
72
72
  "onGroup-item-focused"?: ((...args: any[]) => any) | undefined;
73
- }>, {
73
+ }, {
74
74
  customItem: boolean;
75
75
  initParam: Record<string, any>;
76
76
  height: number;
77
77
  scrollParam: Record<string, any>;
78
78
  groupParam: Record<string, any>;
79
79
  commonParam: Record<string, any>;
80
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
80
+ }, {}>;
81
81
  export default _default;
@@ -4,7 +4,7 @@ import { QTMediaSeriesStyleType } from "./QTMediaSeriesStyleType";
4
4
  import { QTMediaSeriesGroup } from "./QTMediaSeriesGroup";
5
5
  import { QTMediaSeries } from "./QTMediaSeries";
6
6
  import { ESIMediaSeries } from "@extscreen/es3-component";
7
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
7
+ declare const _default: import("vue").DefineComponent<{
8
8
  itemHeight: {
9
9
  type: NumberConstructor;
10
10
  default: number;
@@ -65,16 +65,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
65
65
  type: NumberConstructor;
66
66
  default: number;
67
67
  };
68
- }>, {
69
- isVip: import("vue").Ref<boolean, boolean>;
70
- seriesType: import("vue").Ref<QTMediaSeriesType, QTMediaSeriesType>;
71
- params: import("vue").Ref<any, any>;
72
- commonParams: import("vue").Ref<any, any>;
73
- scrollParams: import("vue").Ref<any, any>;
74
- groupParams: import("vue").Ref<any, any>;
75
- mediaSeriesRef: import("vue").Ref<ESIMediaSeries | undefined, ESIMediaSeries | undefined>;
76
- show: import("vue").Ref<boolean, boolean>;
77
- height: import("vue").Ref<number, number>;
68
+ }, {
69
+ isVip: import("vue").Ref<boolean>;
70
+ seriesType: import("vue").Ref<QTMediaSeriesType>;
71
+ params: import("vue").Ref<any>;
72
+ commonParams: import("vue").Ref<any>;
73
+ scrollParams: import("vue").Ref<any>;
74
+ groupParams: import("vue").Ref<any>;
75
+ mediaSeriesRef: import("vue").Ref<ESIMediaSeries | undefined>;
76
+ show: import("vue").Ref<boolean>;
77
+ height: import("vue").Ref<number>;
78
78
  onLoadData: (event: any) => void;
79
79
  setInitData: (type: QTMediaSeriesType, group: QTMediaSeriesGroup, styleType: QTMediaSeriesStyleType, data: QTMediaSeriesData) => void;
80
80
  setPageData: (page: number, dataArray: Array<QTMediaSeries>) => void;
@@ -91,9 +91,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
91
91
  blockRootFocus: () => void;
92
92
  unBlockRootFocus: () => void;
93
93
  clearFocus: () => void;
94
- requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
94
+ requestFocusDirectly: (direction?: import("..").QTFocusDirection | undefined) => void;
95
95
  setVisibility: (v: import("..").QTIViewVisibility) => void;
96
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("load-data" | "item-click" | "item-focused" | "group-item-focused")[], "load-data" | "item-click" | "item-focused" | "group-item-focused", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
96
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("load-data" | "item-click" | "item-focused" | "group-item-focused")[], "load-data" | "item-click" | "item-focused" | "group-item-focused", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
97
97
  itemHeight: {
98
98
  type: NumberConstructor;
99
99
  default: number;
@@ -154,12 +154,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
154
154
  type: NumberConstructor;
155
155
  default: number;
156
156
  };
157
- }>> & Readonly<{
157
+ }>> & {
158
158
  "onLoad-data"?: ((...args: any[]) => any) | undefined;
159
159
  "onItem-click"?: ((...args: any[]) => any) | undefined;
160
160
  "onItem-focused"?: ((...args: any[]) => any) | undefined;
161
161
  "onGroup-item-focused"?: ((...args: any[]) => any) | undefined;
162
- }>, {
162
+ }, {
163
163
  itemHeight: number;
164
164
  gradientBackground: Record<string, any>;
165
165
  gradientFocusBackground: Record<string, any>;
@@ -170,9 +170,5 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
170
170
  textVipColors: Record<string, any>;
171
171
  itemDivWidth: number;
172
172
  itemDivHeight: number;
173
- }, {}, {
174
- 'media-series-number-item': import("vue").DefineComponent<{}, {}, any>;
175
- 'media-series-text-item': import("vue").DefineComponent<{}, {}, any>;
176
- 'media-series': import("vue").DefineComponent<{}, {}, any>;
177
- }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
173
+ }, {}>;
178
174
  export default _default;
@@ -1,4 +1,4 @@
1
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1
+ declare const _default: import("vue").DefineComponent<{
2
2
  isVip: {
3
3
  type: BooleanConstructor;
4
4
  default: boolean;
@@ -51,7 +51,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
51
51
  selectColor: string;
52
52
  };
53
53
  };
54
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
54
+ }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
55
55
  isVip: {
56
56
  type: BooleanConstructor;
57
57
  default: boolean;
@@ -104,7 +104,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
104
104
  selectColor: string;
105
105
  };
106
106
  };
107
- }>> & Readonly<{}>, {
107
+ }>>, {
108
108
  isVip: boolean;
109
109
  gradientBackground: Record<string, any>;
110
110
  gradientFocusBackground: Record<string, any>;
@@ -113,5 +113,5 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
113
113
  markVipColor: string;
114
114
  textColors: Record<string, any>;
115
115
  textVipColors: Record<string, any>;
116
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
116
+ }, {}>;
117
117
  export default _default;
@@ -1,4 +1,4 @@
1
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
1
+ declare const _default: import("vue").DefineComponent<{
2
2
  isVip: {
3
3
  type: BooleanConstructor;
4
4
  default: boolean;
@@ -59,7 +59,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
59
59
  type: NumberConstructor;
60
60
  default: number;
61
61
  };
62
- }>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
62
+ }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
63
63
  isVip: {
64
64
  type: BooleanConstructor;
65
65
  default: boolean;
@@ -120,7 +120,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
120
120
  type: NumberConstructor;
121
121
  default: number;
122
122
  };
123
- }>> & Readonly<{}>, {
123
+ }>>, {
124
124
  isVip: boolean;
125
125
  gradientBackground: Record<string, any>;
126
126
  gradientFocusBackground: Record<string, any>;
@@ -131,5 +131,5 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
131
131
  textVipColors: Record<string, any>;
132
132
  itemWidth: number;
133
133
  itemHeight: number;
134
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
134
+ }, {}>;
135
135
  export default _default;
@@ -9,7 +9,7 @@ import { QTTabPageState } from "./QTTabPageState";
9
9
  import { QTWaterfallSection } from "../waterfall/core/QTWaterfallSection";
10
10
  import { QTTabItem } from "./QTTabItem";
11
11
  import { QTPluginViewEvent } from "../plugin/QTIPluginView";
12
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
12
+ declare const _default: import("vue").DefineComponent<{
13
13
  enablePlaceholder: {
14
14
  type: BooleanConstructor;
15
15
  default: boolean;
@@ -192,12 +192,12 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
192
192
  type: ArrayConstructor;
193
193
  default: () => never[];
194
194
  };
195
- }>, {
196
- dispatchFunctionBySid: (sid: string, funcName: string, args: Array<import("..").QTNativeParams>) => void;
197
- requestFocus: (direction?: import("..").QTFocusDirection) => void;
198
- requestChildFocus: (position: number, direction?: import("..").QTFocusDirection) => void;
195
+ }, {
196
+ dispatchFunctionBySid: (sid: string, funcName: string, args: import("..").QTNativeParams[]) => void;
197
+ requestFocus: (direction?: import("..").QTFocusDirection | undefined) => void;
198
+ requestChildFocus: (position: number, direction?: import("..").QTFocusDirection | undefined) => void;
199
199
  clearFocus: () => void;
200
- requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
200
+ requestFocusDirectly: (direction?: import("..").QTFocusDirection | undefined) => void;
201
201
  setVisibility: (v: import("..").QTIViewVisibility) => void;
202
202
  requestRootLayout: () => void;
203
203
  requestLayout: () => void;
@@ -213,11 +213,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
213
213
  setPosition: (x: number, y: number, z: number) => void;
214
214
  updateLayout: (width: number, height: number, x: number, y: number) => void;
215
215
  invalidate: () => void;
216
- dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: Array<import("..").QTNativeParams>, delay: number) => void;
217
- setBlockFocusDirections: (directionList: Array<import("..").QTFocusDirectionName>) => void;
218
- setBlockFocusDirectionsOnFail: (directionList: Array<import("..").QTFocusDirectionName>) => void;
219
- setInitFocus: (sid: string, delay?: number) => void;
220
- setAutoFocus: (sid: string, delay?: number) => void;
216
+ dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: import("..").QTNativeParams[], delay: number) => void;
217
+ setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName[]) => void;
218
+ setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName[]) => void;
219
+ setInitFocus: (sid: string, delay?: number | undefined) => void;
220
+ setAutoFocus: (sid: string, delay?: number | undefined) => void;
221
221
  enabledAutofocus: (autofocus: boolean) => void;
222
222
  requestAutofocus: () => void;
223
223
  hasFocus: () => Promise<boolean>;
@@ -228,9 +228,9 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
228
228
  requestChildFocusAtIndex: (position: number) => void;
229
229
  clearMemoryFocused: () => void;
230
230
  showDialog: (show: boolean) => void;
231
- tabs: import("vue").Ref<ESITab | undefined, ESITab | undefined>;
232
- ifTabs: import("vue").Ref<boolean, boolean>;
233
- navBarRef: import("vue").Ref<QTINavBar | undefined, QTINavBar | undefined>;
231
+ tabs: import("vue").Ref<ESITab | undefined>;
232
+ ifTabs: import("vue").Ref<boolean>;
233
+ navBarRef: import("vue").Ref<QTINavBar | undefined>;
234
234
  initTab: (tab: QTTab) => void;
235
235
  initPage: (w: QTWaterfall) => void;
236
236
  setPageState: (pageIndex: number, state: QTTabPageState) => void;
@@ -264,7 +264,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
264
264
  cancelAll: () => void;
265
265
  translationLeft: () => void;
266
266
  translationRight: () => void;
267
- rootOpacity: import("vue").Ref<number, number>;
267
+ rootOpacity: import("vue").Ref<number>;
268
268
  onTabPageLoadData: (e: QTTabEvent) => void;
269
269
  onTabPageChanged: (e: QTTabEvent) => void;
270
270
  onTabEvent: (e: QTTabEvent) => void;
@@ -285,7 +285,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
285
285
  onPluginLoadSuccess: (event: QTPluginViewEvent) => void;
286
286
  onPluginLoadError: (event: QTPluginViewEvent) => void;
287
287
  getDataManager: () => import("./QTTabDataManager").QTTabDataManager;
288
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onTabPageLoadData" | "onTabPageChanged" | "onTabEvent" | "onTabPageItemClick" | "onTabPageItemFocused" | "onTabPageSectionAttached" | "onTabPageScroll" | "onTabPageScrollStateChanged" | "onTabMoveToTopStart" | "onTabMoveToTopEnd" | "onTabMoveToBottomStart" | "onTabMoveToBottomEnd" | "onTabChanged" | "onTabPageScrollToEnd" | "onTabPageScrollToStart" | "onTabClick" | "onPluginLoadSuccess" | "onPluginLoadError")[], "onTabPageLoadData" | "onTabPageChanged" | "onTabEvent" | "onTabPageItemClick" | "onTabPageItemFocused" | "onTabPageSectionAttached" | "onTabPageScroll" | "onTabPageScrollStateChanged" | "onTabMoveToTopStart" | "onTabMoveToTopEnd" | "onTabMoveToBottomStart" | "onTabMoveToBottomEnd" | "onTabChanged" | "onTabPageScrollToEnd" | "onTabPageScrollToStart" | "onTabClick" | "onPluginLoadSuccess" | "onPluginLoadError", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
288
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onTabPageLoadData" | "onTabPageChanged" | "onTabEvent" | "onTabPageItemClick" | "onTabPageItemFocused" | "onTabPageSectionAttached" | "onTabPageScroll" | "onTabPageScrollStateChanged" | "onTabMoveToTopStart" | "onTabMoveToTopEnd" | "onTabMoveToBottomStart" | "onTabMoveToBottomEnd" | "onTabChanged" | "onTabPageScrollToEnd" | "onTabPageScrollToStart" | "onTabClick" | "onPluginLoadSuccess" | "onPluginLoadError")[], "onTabPageLoadData" | "onTabPageChanged" | "onTabEvent" | "onTabPageItemClick" | "onTabPageItemFocused" | "onTabPageSectionAttached" | "onTabPageScroll" | "onTabPageScrollStateChanged" | "onTabMoveToTopStart" | "onTabMoveToTopEnd" | "onTabMoveToBottomStart" | "onTabMoveToBottomEnd" | "onTabChanged" | "onTabPageScrollToEnd" | "onTabPageScrollToStart" | "onTabClick" | "onPluginLoadSuccess" | "onPluginLoadError", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
289
289
  enablePlaceholder: {
290
290
  type: BooleanConstructor;
291
291
  default: boolean;
@@ -468,7 +468,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
468
468
  type: ArrayConstructor;
469
469
  default: () => never[];
470
470
  };
471
- }>> & Readonly<{
471
+ }>> & {
472
472
  onOnTabPageLoadData?: ((...args: any[]) => any) | undefined;
473
473
  onOnTabPageChanged?: ((...args: any[]) => any) | undefined;
474
474
  onOnTabEvent?: ((...args: any[]) => any) | undefined;
@@ -487,7 +487,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
487
487
  onOnTabClick?: ((...args: any[]) => any) | undefined;
488
488
  onOnPluginLoadSuccess?: ((...args: any[]) => any) | undefined;
489
489
  onOnPluginLoadError?: ((...args: any[]) => any) | undefined;
490
- }>, {
490
+ }, {
491
491
  enablePlaceholder: boolean;
492
492
  preloadNumber: number;
493
493
  tabNavBarClass: string;
@@ -526,5 +526,5 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
526
526
  tabConfig: Record<string, any>;
527
527
  waterfallConfig: Record<string, any>;
528
528
  tabs: unknown[];
529
- }, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
529
+ }, {}>;
530
530
  export default _default;
@@ -1,10 +1,10 @@
1
1
  import { QTTextSpan } from "./QTTextSpan";
2
2
  declare const _default: import("vue").DefineComponent<{}, {
3
- dispatchFunctionBySid: (sid: string, funcName: string, args: Array<import("..").QTNativeParams>) => void;
4
- requestFocus: (direction?: import("..").QTFocusDirection) => void;
5
- requestChildFocus: (position: number, direction?: import("..").QTFocusDirection) => void;
3
+ dispatchFunctionBySid: (sid: string, funcName: string, args: import("..").QTNativeParams[]) => void;
4
+ requestFocus: (direction?: import("..").QTFocusDirection | undefined) => void;
5
+ requestChildFocus: (position: number, direction?: import("..").QTFocusDirection | undefined) => void;
6
6
  clearFocus: () => void;
7
- requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
7
+ requestFocusDirectly: (direction?: import("..").QTFocusDirection | undefined) => void;
8
8
  setVisibility: (v: import("..").QTIViewVisibility) => void;
9
9
  requestRootLayout: () => void;
10
10
  requestLayout: () => void;
@@ -20,11 +20,11 @@ declare const _default: import("vue").DefineComponent<{}, {
20
20
  setPosition: (x: number, y: number, z: number) => void;
21
21
  updateLayout: (width: number, height: number, x: number, y: number) => void;
22
22
  invalidate: () => void;
23
- dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: Array<import("..").QTNativeParams>, delay: number) => void;
24
- setBlockFocusDirections: (directionList: Array<import("..").QTFocusDirectionName>) => void;
25
- setBlockFocusDirectionsOnFail: (directionList: Array<import("..").QTFocusDirectionName>) => void;
26
- setInitFocus: (sid: string, delay?: number) => void;
27
- setAutoFocus: (sid: string, delay?: number) => void;
23
+ dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: import("..").QTNativeParams[], delay: number) => void;
24
+ setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName[]) => void;
25
+ setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName[]) => void;
26
+ setInitFocus: (sid: string, delay?: number | undefined) => void;
27
+ setAutoFocus: (sid: string, delay?: number | undefined) => void;
28
28
  enabledAutofocus: (autofocus: boolean) => void;
29
29
  requestAutofocus: () => void;
30
30
  hasFocus: () => Promise<boolean>;
@@ -35,10 +35,10 @@ declare const _default: import("vue").DefineComponent<{}, {
35
35
  requestChildFocusAtIndex: (position: number) => void;
36
36
  clearMemoryFocused: () => void;
37
37
  showDialog: (show: boolean) => void;
38
- viewRef: import("vue").Ref<any, any>;
38
+ viewRef: import("vue").Ref<any>;
39
39
  setText: (text: string) => void;
40
40
  setTextSize: (size: number) => void;
41
41
  setTextColor: (color: string) => void;
42
42
  textSpan: (span: QTTextSpan) => void;
43
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
43
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>>, {}, {}>;
44
44
  export default _default;
@@ -1 +1 @@
1
- export declare const isString: (val: unknown) => val is string;
1
+ export declare const isString: (val: unknown) => boolean;
@@ -1,9 +1,9 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
- dispatchFunctionBySid: (sid: string, funcName: string, args: Array<import("..").QTNativeParams>) => void;
3
- requestFocus: (direction?: import("..").QTFocusDirection) => void;
4
- requestChildFocus: (position: number, direction?: import("..").QTFocusDirection) => void;
2
+ dispatchFunctionBySid: (sid: string, funcName: string, args: import("..").QTNativeParams[]) => void;
3
+ requestFocus: (direction?: import("..").QTFocusDirection | undefined) => void;
4
+ requestChildFocus: (position: number, direction?: import("..").QTFocusDirection | undefined) => void;
5
5
  clearFocus: () => void;
6
- requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
6
+ requestFocusDirectly: (direction?: import("..").QTFocusDirection | undefined) => void;
7
7
  setVisibility: (v: import("./QTIViewVisibility").QTIViewVisibility) => void;
8
8
  requestRootLayout: () => void;
9
9
  requestLayout: () => void;
@@ -19,11 +19,11 @@ declare const _default: import("vue").DefineComponent<{}, {
19
19
  setPosition: (x: number, y: number, z: number) => void;
20
20
  updateLayout: (width: number, height: number, x: number, y: number) => void;
21
21
  invalidate: () => void;
22
- dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: Array<import("..").QTNativeParams>, delay: number) => void;
23
- setBlockFocusDirections: (directionList: Array<import("..").QTFocusDirectionName>) => void;
24
- setBlockFocusDirectionsOnFail: (directionList: Array<import("..").QTFocusDirectionName>) => void;
25
- setInitFocus: (sid: string, delay?: number) => void;
26
- setAutoFocus: (sid: string, delay?: number) => void;
22
+ dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: import("..").QTNativeParams[], delay: number) => void;
23
+ setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName[]) => void;
24
+ setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName[]) => void;
25
+ setInitFocus: (sid: string, delay?: number | undefined) => void;
26
+ setAutoFocus: (sid: string, delay?: number | undefined) => void;
27
27
  enabledAutofocus: (autofocus: boolean) => void;
28
28
  requestAutofocus: () => void;
29
29
  hasFocus: () => Promise<boolean>;
@@ -34,8 +34,8 @@ declare const _default: import("vue").DefineComponent<{}, {
34
34
  requestChildFocusAtIndex: (position: number) => void;
35
35
  clearMemoryFocused: () => void;
36
36
  showDialog: (show: boolean) => void;
37
- viewRef: import("vue").Ref<any, any>;
38
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "clearFocus"[], "clearFocus", import("vue").PublicProps, Readonly<{}> & Readonly<{
37
+ viewRef: import("vue").Ref<any>;
38
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "clearFocus"[], "clearFocus", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
39
39
  onClearFocus?: ((...args: any[]) => any) | undefined;
40
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
40
+ }, {}, {}>;
41
41
  export default _default;
@@ -5,7 +5,7 @@ import { QTWaterfallItem } from "./core/QTWaterfallItem";
5
5
  import { QTWaterfallEvent } from "./core/QTWaterfallEvent";
6
6
  import { QTWaterfallVisibleType } from "./core/QTWaterfallVisibleType";
7
7
  import { QTPluginViewEvent } from "../plugin/QTIPluginView";
8
- declare const _default: import("vue").DefineComponent<import("vue").ExtractPropTypes<{
8
+ declare const _default: import("vue").DefineComponent<{
9
9
  enablePlaceholder: {
10
10
  type: BooleanConstructor;
11
11
  default: boolean;
@@ -69,12 +69,16 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
69
69
  type: StringConstructor;
70
70
  required: false;
71
71
  };
72
- }>, {
73
- dispatchFunctionBySid: (sid: string, funcName: string, args: Array<import("..").QTNativeParams>) => void;
74
- requestFocus: (direction?: import("..").QTFocusDirection) => void;
75
- requestChildFocus: (position: number, direction?: import("..").QTFocusDirection) => void;
72
+ tvSid: {
73
+ type: StringConstructor;
74
+ default: string;
75
+ };
76
+ }, {
77
+ dispatchFunctionBySid: (sid: string, funcName: string, args: import("..").QTNativeParams[]) => void;
78
+ requestFocus: (direction?: import("..").QTFocusDirection | undefined) => void;
79
+ requestChildFocus: (position: number, direction?: import("..").QTFocusDirection | undefined) => void;
76
80
  clearFocus: () => void;
77
- requestFocusDirectly: (direction?: import("..").QTFocusDirection) => void;
81
+ requestFocusDirectly: (direction?: import("..").QTFocusDirection | undefined) => void;
78
82
  setVisibility: (v: import("..").QTIViewVisibility) => void;
79
83
  requestRootLayout: () => void;
80
84
  requestLayout: () => void;
@@ -90,11 +94,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
90
94
  setPosition: (x: number, y: number, z: number) => void;
91
95
  updateLayout: (width: number, height: number, x: number, y: number) => void;
92
96
  invalidate: () => void;
93
- dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: Array<import("..").QTNativeParams>, delay: number) => void;
94
- setBlockFocusDirections: (directionList: Array<import("..").QTFocusDirectionName>) => void;
95
- setBlockFocusDirectionsOnFail: (directionList: Array<import("..").QTFocusDirectionName>) => void;
96
- setInitFocus: (sid: string, delay?: number) => void;
97
- setAutoFocus: (sid: string, delay?: number) => void;
97
+ dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: import("..").QTNativeParams[], delay: number) => void;
98
+ setBlockFocusDirections: (directionList: import("..").QTFocusDirectionName[]) => void;
99
+ setBlockFocusDirectionsOnFail: (directionList: import("..").QTFocusDirectionName[]) => void;
100
+ setInitFocus: (sid: string, delay?: number | undefined) => void;
101
+ setAutoFocus: (sid: string, delay?: number | undefined) => void;
98
102
  enabledAutofocus: (autofocus: boolean) => void;
99
103
  requestAutofocus: () => void;
100
104
  hasFocus: () => Promise<boolean>;
@@ -105,8 +109,8 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
105
109
  requestChildFocusAtIndex: (position: number) => void;
106
110
  clearMemoryFocused: () => void;
107
111
  showDialog: (show: boolean) => void;
108
- waterfallRef: import("vue").Ref<ESIListView | undefined, ESIListView | undefined>;
109
- visibleType: import("vue").Ref<QTWaterfallVisibleType, QTWaterfallVisibleType>;
112
+ waterfallRef: import("vue").Ref<ESIListView | undefined>;
113
+ visibleType: import("vue").Ref<QTWaterfallVisibleType>;
110
114
  init: (data: QTWaterfall) => void;
111
115
  getSectionList: () => Array<QTWaterfallSection>;
112
116
  setSectionList: (sectionList: Array<QTWaterfallSection>) => void;
@@ -149,7 +153,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
149
153
  onScrollYLesserReference: () => void;
150
154
  onPluginLoadSuccess: (event: QTPluginViewEvent) => void;
151
155
  onPluginLoadError: (event: QTPluginViewEvent) => void;
152
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onScroll" | "onScrollStateChanged" | "onItemClick" | "onItemFocused" | "onSectionBind" | "onSectionAttached" | "onSectionDetached" | "onScrollYGreaterReference" | "onScrollYLesserReference" | "onPluginLoadSuccess" | "onPluginLoadError")[], "onScroll" | "onScrollStateChanged" | "onItemClick" | "onItemFocused" | "onSectionBind" | "onSectionAttached" | "onSectionDetached" | "onScrollYGreaterReference" | "onScrollYLesserReference" | "onPluginLoadSuccess" | "onPluginLoadError", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
156
+ }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("onScroll" | "onScrollStateChanged" | "onItemClick" | "onItemFocused" | "onSectionBind" | "onSectionAttached" | "onSectionDetached" | "onScrollYGreaterReference" | "onScrollYLesserReference" | "onPluginLoadSuccess" | "onPluginLoadError")[], "onScroll" | "onScrollStateChanged" | "onItemClick" | "onItemFocused" | "onSectionBind" | "onSectionAttached" | "onSectionDetached" | "onScrollYGreaterReference" | "onScrollYLesserReference" | "onPluginLoadSuccess" | "onPluginLoadError", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
153
157
  enablePlaceholder: {
154
158
  type: BooleanConstructor;
155
159
  default: boolean;
@@ -213,7 +217,11 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
213
217
  type: StringConstructor;
214
218
  required: false;
215
219
  };
216
- }>> & Readonly<{
220
+ tvSid: {
221
+ type: StringConstructor;
222
+ default: string;
223
+ };
224
+ }>> & {
217
225
  onOnScroll?: ((...args: any[]) => any) | undefined;
218
226
  onOnScrollStateChanged?: ((...args: any[]) => any) | undefined;
219
227
  onOnItemClick?: ((...args: any[]) => any) | undefined;
@@ -225,7 +233,7 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
225
233
  onOnScrollYLesserReference?: ((...args: any[]) => any) | undefined;
226
234
  onOnPluginLoadSuccess?: ((...args: any[]) => any) | undefined;
227
235
  onOnPluginLoadError?: ((...args: any[]) => any) | undefined;
228
- }>, {
236
+ }, {
229
237
  enablePlaceholder: boolean;
230
238
  blockFocusDirections: unknown[];
231
239
  vueSectionBlockFocusDirections: unknown[];
@@ -235,15 +243,6 @@ declare const _default: import("vue").DefineComponent<import("vue").ExtractPropT
235
243
  scrollYGreaterReferenceValue: number;
236
244
  pStype: Record<string, any>;
237
245
  qtTabSectionEnable: Record<string, any>;
238
- }, {}, {
239
- 'flex-section': import("vue").DefineComponent<{}, {}, any>;
240
- 'list-section': import("vue").DefineComponent<{}, {}, any>;
241
- 'section-title': import("vue").DefineComponent<{}, {}, any>;
242
- 'loading-section': import("vue").DefineComponent<{}, {}, any>;
243
- 'end-section': import("vue").DefineComponent<{}, {}, any>;
244
- 'blank-section': import("vue").DefineComponent<{}, {}, any>;
245
- 'card-section': import("vue").DefineComponent<{}, {}, any>;
246
- 'vue-section': import("vue").DefineComponent<{}, {}, any>;
247
- 'plugin-section': import("vue").DefineComponent<{}, {}, any>;
248
- }, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
246
+ tvSid: string;
247
+ }, {}>;
249
248
  export default _default;
@@ -1,4 +1,4 @@
1
1
  declare const _default: import("@vue/runtime-core").DefineComponent<{}, {
2
2
  onFocus: (e: any) => void;
3
- }, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
3
+ }, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
4
4
  export default _default;
@@ -1,10 +1,10 @@
1
1
  declare const _default: import("vue").DefineComponent<{}, {
2
2
  onFocus: (e: any) => void;
3
- dispatchFunctionBySid: (sid: string, funcName: string, args: Array<import("../..").QTNativeParams>) => void;
4
- requestFocus: (direction?: import("../..").QTFocusDirection) => void;
5
- requestChildFocus: (position: number, direction?: import("../..").QTFocusDirection) => void;
3
+ dispatchFunctionBySid: (sid: string, funcName: string, args: import("../..").QTNativeParams[]) => void;
4
+ requestFocus: (direction?: import("../..").QTFocusDirection | undefined) => void;
5
+ requestChildFocus: (position: number, direction?: import("../..").QTFocusDirection | undefined) => void;
6
6
  clearFocus: () => void;
7
- requestFocusDirectly: (direction?: import("../..").QTFocusDirection) => void;
7
+ requestFocusDirectly: (direction?: import("../..").QTFocusDirection | undefined) => void;
8
8
  setVisibility: (v: import("../..").QTIViewVisibility) => void;
9
9
  requestRootLayout: () => void;
10
10
  requestLayout: () => void;
@@ -20,11 +20,11 @@ declare const _default: import("vue").DefineComponent<{}, {
20
20
  setPosition: (x: number, y: number, z: number) => void;
21
21
  updateLayout: (width: number, height: number, x: number, y: number) => void;
22
22
  invalidate: () => void;
23
- dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: Array<import("../..").QTNativeParams>, delay: number) => void;
24
- setBlockFocusDirections: (directionList: Array<import("../..").QTFocusDirectionName>) => void;
25
- setBlockFocusDirectionsOnFail: (directionList: Array<import("../..").QTFocusDirectionName>) => void;
26
- setInitFocus: (sid: string, delay?: number) => void;
27
- setAutoFocus: (sid: string, delay?: number) => void;
23
+ dispatchFunctionForTarget: (targetName: string, functionTargetName: string, params: import("../..").QTNativeParams[], delay: number) => void;
24
+ setBlockFocusDirections: (directionList: import("../..").QTFocusDirectionName[]) => void;
25
+ setBlockFocusDirectionsOnFail: (directionList: import("../..").QTFocusDirectionName[]) => void;
26
+ setInitFocus: (sid: string, delay?: number | undefined) => void;
27
+ setAutoFocus: (sid: string, delay?: number | undefined) => void;
28
28
  enabledAutofocus: (autofocus: boolean) => void;
29
29
  requestAutofocus: () => void;
30
30
  hasFocus: () => Promise<boolean>;
@@ -35,8 +35,8 @@ declare const _default: import("vue").DefineComponent<{}, {
35
35
  requestChildFocusAtIndex: (position: number) => void;
36
36
  clearMemoryFocused: () => void;
37
37
  showDialog: (show: boolean) => void;
38
- viewRef: import("vue").Ref<any, any>;
39
- }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "focus"[], "focus", import("vue").PublicProps, Readonly<{}> & Readonly<{
38
+ viewRef: import("vue").Ref<any>;
39
+ }, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, "focus"[], "focus", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{}>> & {
40
40
  onFocus?: ((...args: any[]) => any) | undefined;
41
- }>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
41
+ }, {}, {}>;
42
42
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
1
+ declare const _default: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
2
2
  export default _default;
@@ -1,4 +1,4 @@
1
1
  declare const _default: import("@vue/runtime-core").DefineComponent<{}, {
2
2
  onFocus: (e: any) => void;
3
- }, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
3
+ }, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
4
4
  export default _default;
@@ -1,2 +1,2 @@
1
- declare const _default: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("@vue/runtime-core").ComponentProvideOptions, true, {}, any>;
1
+ declare const _default: import("@vue/runtime-core").DefineComponent<{}, {}, {}, {}, {}, import("@vue/runtime-core").ComponentOptionsMixin, import("@vue/runtime-core").ComponentOptionsMixin, {}, string, import("@vue/runtime-core").PublicProps, Readonly<import("@vue/runtime-core").ExtractPropTypes<{}>>, {}, {}>;
2
2
  export default _default;