@quicktvui/quicktvui3 1.1.25-beta.20 → 1.1.26

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.
@@ -4,7 +4,7 @@ export interface QTIGridView extends QTIView {
4
4
  init(target: Array<QTGridViewItem>, isInit?: boolean): Array<QTGridViewItem>;
5
5
  scrollToTop(): void;
6
6
  clearFocus(): void;
7
- stopPage(isTip?: boolean): void;
7
+ stopPage(): void;
8
8
  restartPage(): void;
9
9
  blockRootFocus(): void;
10
10
  unBlockRootFocus(): void;
@@ -14,7 +14,6 @@ declare const _default: import("vue").DefineComponent<{
14
14
  };
15
15
  pageSize: {
16
16
  type: NumberConstructor;
17
- default: number;
18
17
  };
19
18
  preloadNo: {
20
19
  type: NumberConstructor;
@@ -41,10 +40,11 @@ declare const _default: import("vue").DefineComponent<{
41
40
  };
42
41
  listData: {
43
42
  type: ArrayConstructor;
44
- required: false;
43
+ default: () => never[];
45
44
  };
46
45
  }, {
47
46
  tv_list: import("vue").Ref<any>;
47
+ apkVersion: import("vue").Ref<number>;
48
48
  init: (target: Array<QTGridViewItem>, isInit?: boolean) => Array<QTGridViewItem>;
49
49
  onItemClick: (e: any) => void;
50
50
  onItemBind: (e: any) => void;
@@ -54,7 +54,7 @@ declare const _default: import("vue").DefineComponent<{
54
54
  onItemUnbind: (e: any) => void;
55
55
  onScroll: (e: any) => void;
56
56
  onScrollStateChanged: (e: any) => void;
57
- stopPage: (isTip?: boolean) => void;
57
+ stopPage: () => void;
58
58
  scrollToTop: () => void;
59
59
  clearFocus: () => void;
60
60
  blockRootFocus: () => void;
@@ -66,16 +66,15 @@ declare const _default: import("vue").DefineComponent<{
66
66
  scrollToFocused: (pos: number) => void;
67
67
  setItemSelected: (pos: number, b: boolean) => void;
68
68
  scrollToSelected: (pos: number, b: boolean) => void;
69
+ updateItemProps: (pos: number, name: string, dataObj: object) => void;
69
70
  setInitPosition: (pos: number) => void;
70
71
  setListData: (dataArr: Array<QTGridViewItem>) => void;
72
+ insertItem: (pos: number, data: Array<QTGridViewItem>) => void;
71
73
  clearPostTask: () => void;
72
74
  destroy: () => void;
73
75
  requestFocus: () => void;
74
76
  requestFocusDirectly: () => void;
75
77
  setVisibility: (v: import("..").QTIViewVisibility) => void;
76
- apkVersion: import("vue").Ref<number>;
77
- updateItemProps: (pos: number, name: string, dataObj: object) => void;
78
- insertItem: (pos: number, data: Array<QTGridViewItem>) => void;
79
78
  }, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, ("item-click" | "scroll" | "item-unbind" | "scroll-state-changed" | "item-bind" | "item-focused")[], "item-click" | "scroll" | "item-unbind" | "scroll-state-changed" | "item-bind" | "item-focused", import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
80
79
  loadMore: {
81
80
  type: FunctionConstructor;
@@ -91,7 +90,6 @@ declare const _default: import("vue").DefineComponent<{
91
90
  };
92
91
  pageSize: {
93
92
  type: NumberConstructor;
94
- default: number;
95
93
  };
96
94
  preloadNo: {
97
95
  type: NumberConstructor;
@@ -118,7 +116,7 @@ declare const _default: import("vue").DefineComponent<{
118
116
  };
119
117
  listData: {
120
118
  type: ArrayConstructor;
121
- required: false;
119
+ default: () => never[];
122
120
  };
123
121
  }>> & {
124
122
  "onItem-click"?: ((...args: any[]) => any) | undefined;
@@ -131,11 +129,11 @@ declare const _default: import("vue").DefineComponent<{
131
129
  loadMore: Function;
132
130
  openPage: boolean;
133
131
  spanCount: number;
134
- pageSize: number;
135
132
  preloadNo: number;
136
133
  defaultFocus: number;
137
134
  areaWidth: number;
138
135
  blockFocusDirections: unknown[];
139
136
  loadingDecoration: Record<string, any>;
137
+ listData: unknown[];
140
138
  }, {}>;
141
139
  export default _default;
@@ -1,6 +1,6 @@
1
1
  import { arrangeChildren4ListView } from "./utils/utils";
2
- export { qtRef, qtWatchAll, qtGetParent } from "./qtListen/index";
3
2
  export declare const QuickTVUI: (Vue: any) => void;
3
+ export * from './row';
4
4
  export type { QTIGridView } from './grid-view/core/QTIGridView';
5
5
  export type { QTIListView } from './list-view/core/QTIListView';
6
6
  export type { QTIView } from './view/QTIView';
@@ -4,7 +4,7 @@ export interface QTIListView extends QTIView {
4
4
  init(target: Array<QTListViewItem>, isInit?: boolean): Array<QTListViewItem>;
5
5
  scrollToTop(): void;
6
6
  clearFocus(): void;
7
- stopPage(isTip?: boolean): void;
7
+ stopPage(): void;
8
8
  blockRootFocus(): void;
9
9
  unBlockRootFocus(): void;
10
10
  setDisplay(value: Boolean): void;
@@ -10,7 +10,6 @@ import { QTFlexStylePadding } from "../../core/QTFlexStylePadding";
10
10
  import { QTFlexStyleSize } from "../../core/QTFlexStyleSize";
11
11
  import { QTPosterScore } from "./QTPosterScore";
12
12
  import { QTFocusable } from "../../core/QTFocusable";
13
- import { QTPosterPlaceholderImg } from "./QTPosterPlaceholderImg";
14
13
  export interface QTPoster extends QTWaterfallItem {
15
14
  focus?: QTFocusable;
16
15
  image?: QTPosterImage;
@@ -25,6 +24,5 @@ export interface QTPoster extends QTWaterfallItem {
25
24
  score?: QTPosterScore;
26
25
  titleStyle?: QTFlexStyleMargin & QTFlexStylePadding & QTFlexStyleSize;
27
26
  titleFocusStyle?: QTFlexStyleMargin & QTFlexStylePadding & QTFlexStyleSize;
28
- placeholderImg?: QTPosterPlaceholderImg;
29
27
  [prop: string]: any;
30
28
  }
@@ -3,5 +3,4 @@ import { ESGradient } from "@extscreen/es3-component";
3
3
  export interface QTPosterCorner extends QTPosterElement {
4
4
  text: string;
5
5
  background?: ESGradient;
6
- [prop: string]: any;
7
6
  }
@@ -15,14 +15,6 @@ declare const _default: import("vue").DefineComponent<{
15
15
  type: ObjectConstructor;
16
16
  default: () => null;
17
17
  };
18
- borderRadius: {
19
- type: NumberConstructor;
20
- default: number;
21
- };
22
- rippleColor: {
23
- type: StringConstructor;
24
- default: string;
25
- };
26
18
  }, {
27
19
  dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
28
20
  requestFocus: () => void;
@@ -48,20 +40,10 @@ declare const _default: import("vue").DefineComponent<{
48
40
  type: ObjectConstructor;
49
41
  default: () => null;
50
42
  };
51
- borderRadius: {
52
- type: NumberConstructor;
53
- default: number;
54
- };
55
- rippleColor: {
56
- type: StringConstructor;
57
- default: string;
58
- };
59
43
  }>>, {
60
44
  requestFirstFocus: boolean;
61
45
  loadDelay: number;
62
46
  type: number;
63
47
  templateKeyMap: Record<string, any>;
64
- borderRadius: number;
65
- rippleColor: string;
66
48
  }, {}>;
67
49
  export default _default;
@@ -0,0 +1,2 @@
1
+ import QtRow from './index.vue';
2
+ export default QtRow;
@@ -9,46 +9,6 @@ declare const _default: import("vue").DefineComponent<{
9
9
  type: NumberConstructor;
10
10
  default: number;
11
11
  };
12
- gradientBackground: {
13
- type: ObjectConstructor;
14
- default: () => {
15
- colors: string[];
16
- orientation: number;
17
- cornerRadius: number;
18
- };
19
- };
20
- iconGradientBackground: {
21
- type: ObjectConstructor;
22
- default: () => {
23
- colors: string[];
24
- cornerRadius: number;
25
- orientation: number;
26
- };
27
- };
28
- markColor: {
29
- type: StringConstructor;
30
- default: string;
31
- };
32
- markVipColor: {
33
- type: StringConstructor;
34
- default: string;
35
- };
36
- textColors: {
37
- type: ObjectConstructor;
38
- default: () => {
39
- color: string;
40
- focusColor: string;
41
- selectColor: string;
42
- };
43
- };
44
- textVipColors: {
45
- type: ObjectConstructor;
46
- default: () => {
47
- color: string;
48
- focusColor: string;
49
- selectColor: string;
50
- };
51
- };
52
12
  }, {
53
13
  isVip: import("vue").Ref<boolean>;
54
14
  seriesType: import("vue").Ref<QTMediaSeriesType>;
@@ -82,46 +42,6 @@ declare const _default: import("vue").DefineComponent<{
82
42
  type: NumberConstructor;
83
43
  default: number;
84
44
  };
85
- gradientBackground: {
86
- type: ObjectConstructor;
87
- default: () => {
88
- colors: string[];
89
- orientation: number;
90
- cornerRadius: number;
91
- };
92
- };
93
- iconGradientBackground: {
94
- type: ObjectConstructor;
95
- default: () => {
96
- colors: string[];
97
- cornerRadius: number;
98
- orientation: number;
99
- };
100
- };
101
- markColor: {
102
- type: StringConstructor;
103
- default: string;
104
- };
105
- markVipColor: {
106
- type: StringConstructor;
107
- default: string;
108
- };
109
- textColors: {
110
- type: ObjectConstructor;
111
- default: () => {
112
- color: string;
113
- focusColor: string;
114
- selectColor: string;
115
- };
116
- };
117
- textVipColors: {
118
- type: ObjectConstructor;
119
- default: () => {
120
- color: string;
121
- focusColor: string;
122
- selectColor: string;
123
- };
124
- };
125
45
  }>> & {
126
46
  "onLoad-data"?: ((...args: any[]) => any) | undefined;
127
47
  "onItem-click"?: ((...args: any[]) => any) | undefined;
@@ -129,11 +49,5 @@ declare const _default: import("vue").DefineComponent<{
129
49
  "onGroup-item-focused"?: ((...args: any[]) => any) | undefined;
130
50
  }, {
131
51
  itemHeight: number;
132
- gradientBackground: Record<string, any>;
133
- iconGradientBackground: Record<string, any>;
134
- markColor: string;
135
- markVipColor: string;
136
- textColors: Record<string, any>;
137
- textVipColors: Record<string, any>;
138
52
  }, {}>;
139
53
  export default _default;
@@ -3,98 +3,12 @@ declare const _default: import("vue").DefineComponent<{
3
3
  type: BooleanConstructor;
4
4
  default: boolean;
5
5
  };
6
- gradientBackground: {
7
- type: ObjectConstructor;
8
- default: () => {
9
- colors: string[];
10
- orientation: number;
11
- cornerRadius: number;
12
- };
13
- };
14
- iconGradientBackground: {
15
- type: ObjectConstructor;
16
- default: () => {
17
- colors: string[];
18
- cornerRadius: number;
19
- orientation: number;
20
- };
21
- };
22
- markColor: {
23
- type: StringConstructor;
24
- default: string;
25
- };
26
- markVipColor: {
27
- type: StringConstructor;
28
- default: string;
29
- };
30
- textColors: {
31
- type: ObjectConstructor;
32
- default: () => {
33
- color: string;
34
- focusColor: string;
35
- selectColor: string;
36
- };
37
- };
38
- textVipColors: {
39
- type: ObjectConstructor;
40
- default: () => {
41
- color: string;
42
- focusColor: string;
43
- selectColor: string;
44
- };
45
- };
46
6
  }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
47
7
  isVip: {
48
8
  type: BooleanConstructor;
49
9
  default: boolean;
50
10
  };
51
- gradientBackground: {
52
- type: ObjectConstructor;
53
- default: () => {
54
- colors: string[];
55
- orientation: number;
56
- cornerRadius: number;
57
- };
58
- };
59
- iconGradientBackground: {
60
- type: ObjectConstructor;
61
- default: () => {
62
- colors: string[];
63
- cornerRadius: number;
64
- orientation: number;
65
- };
66
- };
67
- markColor: {
68
- type: StringConstructor;
69
- default: string;
70
- };
71
- markVipColor: {
72
- type: StringConstructor;
73
- default: string;
74
- };
75
- textColors: {
76
- type: ObjectConstructor;
77
- default: () => {
78
- color: string;
79
- focusColor: string;
80
- selectColor: string;
81
- };
82
- };
83
- textVipColors: {
84
- type: ObjectConstructor;
85
- default: () => {
86
- color: string;
87
- focusColor: string;
88
- selectColor: string;
89
- };
90
- };
91
11
  }>>, {
92
12
  isVip: boolean;
93
- gradientBackground: Record<string, any>;
94
- iconGradientBackground: Record<string, any>;
95
- markColor: string;
96
- markVipColor: string;
97
- textColors: Record<string, any>;
98
- textVipColors: Record<string, any>;
99
13
  }, {}>;
100
14
  export default _default;
@@ -3,98 +3,12 @@ declare const _default: import("vue").DefineComponent<{
3
3
  type: BooleanConstructor;
4
4
  default: boolean;
5
5
  };
6
- gradientBackground: {
7
- type: ObjectConstructor;
8
- default: () => {
9
- colors: string[];
10
- orientation: number;
11
- cornerRadius: number;
12
- };
13
- };
14
- iconGradientBackground: {
15
- type: ObjectConstructor;
16
- default: () => {
17
- colors: string[];
18
- cornerRadius: number;
19
- orientation: number;
20
- };
21
- };
22
- markColor: {
23
- type: StringConstructor;
24
- default: string;
25
- };
26
- markVipColor: {
27
- type: StringConstructor;
28
- default: string;
29
- };
30
- textColors: {
31
- type: ObjectConstructor;
32
- default: () => {
33
- color: string;
34
- focusColor: string;
35
- selectColor: string;
36
- };
37
- };
38
- textVipColors: {
39
- type: ObjectConstructor;
40
- default: () => {
41
- color: string;
42
- focusColor: string;
43
- selectColor: string;
44
- };
45
- };
46
6
  }, unknown, unknown, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
47
7
  isVip: {
48
8
  type: BooleanConstructor;
49
9
  default: boolean;
50
10
  };
51
- gradientBackground: {
52
- type: ObjectConstructor;
53
- default: () => {
54
- colors: string[];
55
- orientation: number;
56
- cornerRadius: number;
57
- };
58
- };
59
- iconGradientBackground: {
60
- type: ObjectConstructor;
61
- default: () => {
62
- colors: string[];
63
- cornerRadius: number;
64
- orientation: number;
65
- };
66
- };
67
- markColor: {
68
- type: StringConstructor;
69
- default: string;
70
- };
71
- markVipColor: {
72
- type: StringConstructor;
73
- default: string;
74
- };
75
- textColors: {
76
- type: ObjectConstructor;
77
- default: () => {
78
- color: string;
79
- focusColor: string;
80
- selectColor: string;
81
- };
82
- };
83
- textVipColors: {
84
- type: ObjectConstructor;
85
- default: () => {
86
- color: string;
87
- focusColor: string;
88
- selectColor: string;
89
- };
90
- };
91
11
  }>>, {
92
12
  isVip: boolean;
93
- gradientBackground: Record<string, any>;
94
- iconGradientBackground: Record<string, any>;
95
- markColor: string;
96
- markVipColor: string;
97
- textColors: Record<string, any>;
98
- textVipColors: Record<string, any>;
99
13
  }, {}>;
100
14
  export default _default;
@@ -199,7 +199,7 @@ declare const _default: import("vue").DefineComponent<{
199
199
  onTabPageLoadData: (e: QTTabEvent) => void;
200
200
  onTabPageChanged: (e: QTTabEvent) => void;
201
201
  onTabEvent: (e: QTTabEvent) => void;
202
- onWaterfallItemClick: (sectionIndex: number, itemIndex: number, item: QTWaterfallItem, e: any) => void;
202
+ onWaterfallItemClick: (sectionIndex: number, itemIndex: number, item: QTWaterfallItem) => void;
203
203
  onWaterfallItemFocused: (sectionIndex: number, itemIndex: number, isFocused: boolean, item: QTWaterfallItem) => void;
204
204
  onWaterfallSectionBind: (pageIndex: number, sectionIndex: number) => void;
205
205
  onWaterfallSectionAttached: (pageIndex: number, sectionIndex: number) => void;
@@ -1,5 +1,5 @@
1
1
  import { QTWaterfallItem } from "./QTWaterfallItem";
2
2
  import { QTWaterfall } from "./QTWaterfall";
3
3
  import { QTWaterfallSection } from "./QTWaterfallSection";
4
- export declare function generateSectionList(waterfall: QTWaterfall, sectionList: Array<QTWaterfallSection>, isResetSection?: boolean): Array<QTWaterfallItem>;
5
- export declare function generateSection(waterfall: QTWaterfall, section: QTWaterfallSection, isResetSection?: boolean): QTWaterfallSection;
4
+ export declare function generateSectionList(waterfall: QTWaterfall, sectionList: Array<QTWaterfallSection>): Array<QTWaterfallItem>;
5
+ export declare function generateSection(waterfall: QTWaterfall, section: QTWaterfallSection): QTWaterfallSection;
@@ -33,14 +33,6 @@ declare const _default: import("vue").DefineComponent<{
33
33
  type: NumberConstructor;
34
34
  default: number;
35
35
  };
36
- listData: {
37
- type: ArrayConstructor;
38
- required: false;
39
- };
40
- pStype: {
41
- type: ObjectConstructor;
42
- default: () => {};
43
- };
44
36
  }, {
45
37
  dispatchFunctionBySid: (sid: string, funcName: string, args: any[]) => void;
46
38
  requestFocus: () => void;
@@ -119,14 +111,6 @@ declare const _default: import("vue").DefineComponent<{
119
111
  type: NumberConstructor;
120
112
  default: number;
121
113
  };
122
- listData: {
123
- type: ArrayConstructor;
124
- required: false;
125
- };
126
- pStype: {
127
- type: ObjectConstructor;
128
- default: () => {};
129
- };
130
114
  }>> & {
131
115
  onOnScroll?: ((...args: any[]) => any) | undefined;
132
116
  onOnScrollStateChanged?: ((...args: any[]) => any) | undefined;
@@ -145,6 +129,5 @@ declare const _default: import("vue").DefineComponent<{
145
129
  customItemPool: Record<string, any>;
146
130
  scrollYLesserReferenceValue: number;
147
131
  scrollYGreaterReferenceValue: number;
148
- pStype: Record<string, any>;
149
132
  }, {}>;
150
133
  export default _default;
package/global.d.ts ADDED
@@ -0,0 +1,9 @@
1
+ // GlobalComponents for Volar
2
+ declare module "@vue/runtime-core" {
3
+ export interface GlobalComponents {
4
+ QtRow: typeof import('@quicktvui/quicktvui3')['QtRow']
5
+ }
6
+ }
7
+ export {};
8
+
9
+
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@quicktvui/quicktvui3",
3
- "version": "1.1.25-beta.20",
3
+ "version": "1.1.26",
4
4
  "description": "ExtScreen framework",
5
5
  "author": "ExtScreen Team",
6
6
  "homepage": "http://extscreen.com",
@@ -9,6 +9,12 @@
9
9
  "main": "dist/index.js",
10
10
  "module": "dist/index.js",
11
11
  "types": "dist/src/index.d.ts",
12
+ "style": "dist/index.css",
13
+ "exports": {
14
+ "./global": {
15
+ "types": "./global.d.ts"
16
+ }
17
+ },
12
18
  "keywords": [
13
19
  "native",
14
20
  "web",
@@ -16,6 +22,7 @@
16
22
  "compiler"
17
23
  ],
18
24
  "files": [
19
- "dist"
25
+ "dist",
26
+ "global.d.ts"
20
27
  ]
21
28
  }
@@ -1,4 +0,0 @@
1
- export interface QTPosterPlaceholderImg {
2
- enable: boolean;
3
- src: string;
4
- }
@@ -1,17 +0,0 @@
1
- export type TrunFn = (target?: any, prop?: any, newValue?: any, type?: any, oldValue?: any, oldTarget?: any) => void;
2
- export declare class QtReactiveEffect {
3
- fn: TrunFn;
4
- scheduler?: TrunFn | undefined;
5
- active: boolean;
6
- deeps: Set<any>[];
7
- constructor(fn: TrunFn, scheduler?: TrunFn | undefined);
8
- run(): void;
9
- stop(): void;
10
- }
11
- export declare function qtIsTracking(): boolean;
12
- export declare function qtClearupTrack(target: any): void;
13
- export declare function qtTrack(target: any, key: any): void;
14
- export declare function qtTrackEffects(dep: Set<object>): void;
15
- export declare function qtTrigger(target: any, prop: any, newValue: any, type?: any, oldValue?: any): void;
16
- export declare function qtTriggerEffects(effects: any, target?: any, prop?: any, newValue?: any, type?: any, oldValue?: any): any;
17
- export declare function qtEffect(fn: TrunFn): any;
@@ -1,5 +0,0 @@
1
- export { qtEffect } from "./effect";
2
- export { qtGetParent } from "./reactive";
3
- export { qtRef } from "./ref";
4
- export { qtWatchAll } from './watch';
5
- export { qtLongestSequenceSplit, qtFilterChangeMap } from './types';
@@ -1,9 +0,0 @@
1
- declare class QtArray extends Array {
2
- shift(): any;
3
- unshift(...items: any[]): number;
4
- push(...items: any[]): number;
5
- splice(start: number, deleteCount: number, ...items: any[]): any[];
6
- pop(): any;
7
- concat(items: any[]): any[];
8
- }
9
- export default QtArray;
@@ -1,2 +0,0 @@
1
- import type { IQtWatchOptions } from './watch';
2
- export declare const qtDiff: (oldt: any[], newt: any[], options: IQtWatchOptions) => void;
@@ -1,14 +0,0 @@
1
- export declare const enum emReactiveFlags {
2
- IS_REACTIVE = "__v_isReactive",
3
- WATCH_ALL = "__ls_watchAll",
4
- WATCH_RAW = "__v_raw",
5
- RESET_REF_VALUE = "__ls_reset_ref_value",
6
- NEW_SET = "__ls_new_set",
7
- qtPath = "__qt_path",
8
- qtRoot = "__qt_root",
9
- qtArrDeth = "__qt_arr_deth"
10
- }
11
- export declare const isTrackProp: (target: object, prop: string | symbol) => boolean;
12
- export declare const qtGetParent: (root: object, paths: any[], layer: number) => Record<any, any> | undefined;
13
- export declare function qtReactive(data: object, parent?: any, path?: any): any;
14
- export declare function qtToReactive(value: any, parent?: any, path?: any): any;
@@ -1,5 +0,0 @@
1
- export interface IQtRef<T = any> {
2
- value: T;
3
- [k: string]: any;
4
- }
5
- export declare function qtRef<T extends Array<any>>(value?: T): IQtRef<T>;
@@ -1,45 +0,0 @@
1
- export declare class QtChangeData {
2
- start: number;
3
- end: number;
4
- deleteCount: number;
5
- datas: Map<any, any>;
6
- names: Map<any, Set<any>>;
7
- dataArr?: any[];
8
- updateCount: number;
9
- rootUpdateCount: number;
10
- deth: number;
11
- constructor(start: number, end: number, deleteCount?: number);
12
- resetData(): void;
13
- }
14
- export declare const typeEnum: {
15
- set: string;
16
- qtSet: string;
17
- push: string;
18
- splice: string;
19
- pop: string;
20
- concat: string;
21
- unknownSet: string;
22
- currentType: string;
23
- expectCangeNum: string;
24
- isInit: string;
25
- shift: string;
26
- unshift: string;
27
- newDatas: string;
28
- };
29
- export declare const qtFilterChangeMap: (deth: number | undefined, datas: Map<any, any>) => Map<any, any>;
30
- export declare const qtLongestSequenceSplit: (maps: QtChangeData) => Map<any, QtChangeData>;
31
- declare class QtType {
32
- private targetFlags;
33
- private targetMaps;
34
- getFlag(target: any): Map<string, any>;
35
- getTargetType(target: any, type: any): QtChangeData | undefined;
36
- getType(target: any): Map<any, QtChangeData> | undefined;
37
- setType(target: any, type: string, datas: QtChangeData): void;
38
- deleteType(target: any, type?: string): void;
39
- changeTypeData(target: any, prop: any, value: any): boolean;
40
- changeOfsetType(target: any, prop: any, value: any, name?: any, deth?: number): void;
41
- recordNewData(target: any, items: any[]): void;
42
- checkIsNewData(target: any, data: any): boolean;
43
- }
44
- declare const qtType: QtType;
45
- export default qtType;