@manycore/budget-plugin-api 0.0.1-alpha.1 → 0.0.1-alpha.2
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.
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@ import type { ServAPIRetn } from 'servkit';
|
|
|
3
3
|
/**
|
|
4
4
|
* 表格元信息
|
|
5
5
|
*/
|
|
6
|
-
interface ISheet {
|
|
6
|
+
export interface ISheet {
|
|
7
7
|
/**
|
|
8
8
|
* 表名称
|
|
9
9
|
*/
|
|
@@ -12,7 +12,7 @@ interface ISheet {
|
|
|
12
12
|
/**
|
|
13
13
|
* 表格列信息
|
|
14
14
|
*/
|
|
15
|
-
interface IColumn {
|
|
15
|
+
export interface IColumn {
|
|
16
16
|
/**
|
|
17
17
|
* 列ID,表内唯一
|
|
18
18
|
*/
|
|
@@ -33,7 +33,7 @@ interface IColumn {
|
|
|
33
33
|
/**
|
|
34
34
|
* 单元格错误信息
|
|
35
35
|
*/
|
|
36
|
-
interface ICellError {
|
|
36
|
+
export interface ICellError {
|
|
37
37
|
/**
|
|
38
38
|
* 单元格错误信息
|
|
39
39
|
*/
|
|
@@ -42,7 +42,7 @@ interface ICellError {
|
|
|
42
42
|
/**
|
|
43
43
|
* 单元格基础信息
|
|
44
44
|
*/
|
|
45
|
-
interface ICellBase {
|
|
45
|
+
export interface ICellBase {
|
|
46
46
|
/**
|
|
47
47
|
* 表ID
|
|
48
48
|
*/
|
|
@@ -63,7 +63,7 @@ interface ICellBase {
|
|
|
63
63
|
/**
|
|
64
64
|
* 单元格信息
|
|
65
65
|
*/
|
|
66
|
-
interface ICell extends ICellBase {
|
|
66
|
+
export interface ICell extends ICellBase {
|
|
67
67
|
/**
|
|
68
68
|
* 子表也是一个独立的表格,表Id在清单范围内唯一
|
|
69
69
|
*/
|
|
@@ -76,7 +76,7 @@ interface ICell extends ICellBase {
|
|
|
76
76
|
/**
|
|
77
77
|
* 表格单行信息
|
|
78
78
|
*/
|
|
79
|
-
interface IROW {
|
|
79
|
+
export interface IROW {
|
|
80
80
|
/**
|
|
81
81
|
* 行ID,表内唯一
|
|
82
82
|
*/
|
|
@@ -94,7 +94,6 @@ interface IROW {
|
|
|
94
94
|
* columnId: 1,
|
|
95
95
|
* rowId: 2,
|
|
96
96
|
* value: 'abc'
|
|
97
|
-
*
|
|
98
97
|
* },
|
|
99
98
|
* 12: {
|
|
100
99
|
* tableId: 1,
|
|
@@ -110,7 +109,7 @@ interface IROW {
|
|
|
110
109
|
/**
|
|
111
110
|
* 单个表数据
|
|
112
111
|
*/
|
|
113
|
-
interface ITable {
|
|
112
|
+
export interface ITable {
|
|
114
113
|
/**
|
|
115
114
|
* 表ID,清单内唯一
|
|
116
115
|
*/
|
|
@@ -131,7 +130,7 @@ interface ITable {
|
|
|
131
130
|
/**
|
|
132
131
|
* 清单元信息
|
|
133
132
|
*/
|
|
134
|
-
interface IListingMeta {
|
|
133
|
+
export interface IListingMeta {
|
|
135
134
|
/**
|
|
136
135
|
* 清单的唯一标识
|
|
137
136
|
*/
|
|
@@ -215,4 +214,3 @@ export declare class ListingService extends ServService {
|
|
|
215
214
|
*/
|
|
216
215
|
getCurrentListingId(): ServAPIRetn<string>;
|
|
217
216
|
}
|
|
218
|
-
export {};
|