@univerjs/sheets-formula-ui 0.3.0-nightly.202410101606
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/README.md +39 -0
- package/lib/cjs/index.js +1 -0
- package/lib/es/index.js +1 -0
- package/lib/index.css +1 -0
- package/lib/locale/en-US.json +10987 -0
- package/lib/locale/ru-RU.json +10938 -0
- package/lib/locale/vi-VN.json +9511 -0
- package/lib/locale/zh-CN.json +10987 -0
- package/lib/locale/zh-TW.json +10987 -0
- package/lib/types/commands/commands/formula-clipboard.command.d.ts +2 -0
- package/lib/types/commands/operations/__tests__/create-command-test-bed.d.ts +13 -0
- package/lib/types/commands/operations/__tests__/insert-function.operation.spec.d.ts +16 -0
- package/lib/types/commands/operations/editor-formula.operation.d.ts +11 -0
- package/lib/types/commands/operations/help-function.operation.d.ts +2 -0
- package/lib/types/commands/operations/insert-function.operation.d.ts +19 -0
- package/lib/types/commands/operations/more-functions.operation.d.ts +2 -0
- package/lib/types/commands/operations/reference-absolute.operation.d.ts +2 -0
- package/lib/types/commands/operations/search-function.operation.d.ts +2 -0
- package/lib/types/common/plugin-name.d.ts +16 -0
- package/lib/types/common/prompt.d.ts +16 -0
- package/lib/types/common/selection.d.ts +4 -0
- package/lib/types/controllers/__tests__/create-command-test-bed.d.ts +7 -0
- package/lib/types/controllers/__tests__/formula-auto-fill.controller.spec.d.ts +16 -0
- package/lib/types/controllers/__tests__/formula-clipboard.controller.spec.d.ts +16 -0
- package/lib/types/controllers/__tests__/update-formula.controller.spec.d.ts +16 -0
- package/lib/types/controllers/config.schema.d.ts +15 -0
- package/lib/types/controllers/formula-alert-render.controller.d.ts +15 -0
- package/lib/types/controllers/formula-auto-fill.controller.d.ts +10 -0
- package/lib/types/controllers/formula-clipboard.controller.d.ts +25 -0
- package/lib/types/controllers/formula-editor-show.controller.d.ts +28 -0
- package/lib/types/controllers/formula-process.controller.d.ts +15 -0
- package/lib/types/controllers/formula-render.controller.d.ts +6 -0
- package/lib/types/controllers/formula-ui.controller.d.ts +19 -0
- package/lib/types/controllers/menu.d.ts +5 -0
- package/lib/types/controllers/menu.schema.d.ts +2 -0
- package/lib/types/controllers/prompt.controller.d.ts +170 -0
- package/lib/types/controllers/shortcuts/prompt.shortcut.d.ts +9 -0
- package/lib/types/controllers/utils/__tests__/offset-formula-data.spec.d.ts +16 -0
- package/lib/types/controllers/utils/__tests__/ref-range-formula.spec.d.ts +16 -0
- package/lib/types/controllers/utils/__tests__/utils.spec.d.ts +16 -0
- package/lib/types/controllers/utils/offset-formula-data.d.ts +15 -0
- package/lib/types/controllers/utils/ref-range-formula.d.ts +71 -0
- package/lib/types/controllers/utils/utils.d.ts +15 -0
- package/lib/types/index.d.ts +25 -0
- package/lib/types/locale/en-US.d.ts +9983 -0
- package/lib/types/locale/function-list/array/en-US.d.ts +17 -0
- package/lib/types/locale/function-list/array/ja-JP.d.ts +17 -0
- package/lib/types/locale/function-list/array/ru-RU.d.ts +2 -0
- package/lib/types/locale/function-list/array/vi-VN.d.ts +17 -0
- package/lib/types/locale/function-list/array/zh-CN.d.ts +17 -0
- package/lib/types/locale/function-list/array/zh-TW.d.ts +17 -0
- package/lib/types/locale/function-list/compatibility/en-US.d.ts +762 -0
- package/lib/types/locale/function-list/compatibility/ja-JP.d.ts +762 -0
- package/lib/types/locale/function-list/compatibility/ru-RU.d.ts +2 -0
- package/lib/types/locale/function-list/compatibility/vi-VN.d.ts +762 -0
- package/lib/types/locale/function-list/compatibility/zh-CN.d.ts +762 -0
- package/lib/types/locale/function-list/compatibility/zh-TW.d.ts +762 -0
- package/lib/types/locale/function-list/cube/en-US.d.ts +144 -0
- package/lib/types/locale/function-list/cube/ja-JP.d.ts +144 -0
- package/lib/types/locale/function-list/cube/ru-RU.d.ts +144 -0
- package/lib/types/locale/function-list/cube/vi-VN.d.ts +144 -0
- package/lib/types/locale/function-list/cube/zh-CN.d.ts +144 -0
- package/lib/types/locale/function-list/cube/zh-TW.d.ts +144 -0
- package/lib/types/locale/function-list/database/en-US.d.ts +234 -0
- package/lib/types/locale/function-list/database/ja-JP.d.ts +234 -0
- package/lib/types/locale/function-list/database/ru-RU.d.ts +234 -0
- package/lib/types/locale/function-list/database/vi-VN.d.ts +234 -0
- package/lib/types/locale/function-list/database/zh-CN.d.ts +234 -0
- package/lib/types/locale/function-list/database/zh-TW.d.ts +234 -0
- package/lib/types/locale/function-list/date/en-US.d.ts +458 -0
- package/lib/types/locale/function-list/date/ja-JP.d.ts +458 -0
- package/lib/types/locale/function-list/date/ru-RU.d.ts +2 -0
- package/lib/types/locale/function-list/date/vi-VN.d.ts +458 -0
- package/lib/types/locale/function-list/date/zh-CN.d.ts +458 -0
- package/lib/types/locale/function-list/date/zh-TW.d.ts +458 -0
- package/lib/types/locale/function-list/engineering/en-US.d.ts +894 -0
- package/lib/types/locale/function-list/engineering/ja-JP.d.ts +894 -0
- package/lib/types/locale/function-list/engineering/ru-RU.d.ts +2 -0
- package/lib/types/locale/function-list/engineering/vi-VN.d.ts +894 -0
- package/lib/types/locale/function-list/engineering/zh-CN.d.ts +894 -0
- package/lib/types/locale/function-list/engineering/zh-TW.d.ts +894 -0
- package/lib/types/locale/function-list/financial/en-US.d.ts +1608 -0
- package/lib/types/locale/function-list/financial/ja-JP.d.ts +1608 -0
- package/lib/types/locale/function-list/financial/ru-RU.d.ts +2 -0
- package/lib/types/locale/function-list/financial/vi-VN.d.ts +1608 -0
- package/lib/types/locale/function-list/financial/zh-CN.d.ts +1608 -0
- package/lib/types/locale/function-list/financial/zh-TW.d.ts +1608 -0
- package/lib/types/locale/function-list/information/en-US.d.ts +327 -0
- package/lib/types/locale/function-list/information/ja-JP.d.ts +327 -0
- package/lib/types/locale/function-list/information/ru-RU.d.ts +2 -0
- package/lib/types/locale/function-list/information/vi-VN.d.ts +255 -0
- package/lib/types/locale/function-list/information/zh-CN.d.ts +327 -0
- package/lib/types/locale/function-list/information/zh-TW.d.ts +327 -0
- package/lib/types/locale/function-list/logical/en-US.d.ts +390 -0
- package/lib/types/locale/function-list/logical/ja-JP.d.ts +390 -0
- package/lib/types/locale/function-list/logical/ru-RU.d.ts +2 -0
- package/lib/types/locale/function-list/logical/vi-VN.d.ts +390 -0
- package/lib/types/locale/function-list/logical/zh-CN.d.ts +390 -0
- package/lib/types/locale/function-list/logical/zh-TW.d.ts +390 -0
- package/lib/types/locale/function-list/lookup/en-US.d.ts +812 -0
- package/lib/types/locale/function-list/lookup/ja-JP.d.ts +812 -0
- package/lib/types/locale/function-list/lookup/ru-RU.d.ts +2 -0
- package/lib/types/locale/function-list/lookup/vi-VN.d.ts +722 -0
- package/lib/types/locale/function-list/lookup/zh-CN.d.ts +812 -0
- package/lib/types/locale/function-list/lookup/zh-TW.d.ts +812 -0
- package/lib/types/locale/function-list/math/en-US.d.ts +1388 -0
- package/lib/types/locale/function-list/math/ja-JP.d.ts +1388 -0
- package/lib/types/locale/function-list/math/ru-RU.d.ts +2 -0
- package/lib/types/locale/function-list/math/vi-VN.d.ts +1298 -0
- package/lib/types/locale/function-list/math/zh-CN.d.ts +1388 -0
- package/lib/types/locale/function-list/math/zh-TW.d.ts +1388 -0
- package/lib/types/locale/function-list/statistical/en-US.d.ts +2160 -0
- package/lib/types/locale/function-list/statistical/ja-JP.d.ts +2160 -0
- package/lib/types/locale/function-list/statistical/ru-RU.d.ts +2 -0
- package/lib/types/locale/function-list/statistical/vi-VN.d.ts +1188 -0
- package/lib/types/locale/function-list/statistical/zh-CN.d.ts +2160 -0
- package/lib/types/locale/function-list/statistical/zh-TW.d.ts +2160 -0
- package/lib/types/locale/function-list/text/en-US.d.ts +904 -0
- package/lib/types/locale/function-list/text/ja-JP.d.ts +905 -0
- package/lib/types/locale/function-list/text/ru-RU.d.ts +856 -0
- package/lib/types/locale/function-list/text/vi-VN.d.ts +784 -0
- package/lib/types/locale/function-list/text/zh-CN.d.ts +904 -0
- package/lib/types/locale/function-list/text/zh-TW.d.ts +904 -0
- package/lib/types/locale/function-list/univer/en-US.d.ts +17 -0
- package/lib/types/locale/function-list/univer/ja-JP.d.ts +17 -0
- package/lib/types/locale/function-list/univer/ru-RU.d.ts +17 -0
- package/lib/types/locale/function-list/univer/vi-VN.d.ts +17 -0
- package/lib/types/locale/function-list/univer/zh-CN.d.ts +17 -0
- package/lib/types/locale/function-list/univer/zh-TW.d.ts +17 -0
- package/lib/types/locale/function-list/web/en-US.d.ts +72 -0
- package/lib/types/locale/function-list/web/ja-JP.d.ts +72 -0
- package/lib/types/locale/function-list/web/ru-RU.d.ts +72 -0
- package/lib/types/locale/function-list/web/vi-VN.d.ts +2 -0
- package/lib/types/locale/function-list/web/zh-CN.d.ts +72 -0
- package/lib/types/locale/function-list/web/zh-TW.d.ts +72 -0
- package/lib/types/locale/ru-RU.d.ts +9934 -0
- package/lib/types/locale/vi-VN.d.ts +8657 -0
- package/lib/types/locale/zh-CN.d.ts +9983 -0
- package/lib/types/locale/zh-TW.d.ts +9983 -0
- package/lib/types/services/formula-common.d.ts +18 -0
- package/lib/types/services/prompt.service.d.ts +160 -0
- package/lib/types/services/render-services/ref-selections.render-service.d.ts +42 -0
- package/lib/types/services/utils.d.ts +8 -0
- package/lib/types/sheets-formula-ui.plugin.d.ts +19 -0
- package/lib/types/views/FormulaPromptContainer.d.ts +2 -0
- package/lib/types/views/more-functions/MoreFunctions.d.ts +2 -0
- package/lib/types/views/more-functions/function-help/FunctionHelp.d.ts +22 -0
- package/lib/types/views/more-functions/function-params/FunctionParams.d.ts +8 -0
- package/lib/types/views/more-functions/input-params/InputParams.d.ts +7 -0
- package/lib/types/views/more-functions/interface.d.ts +16 -0
- package/lib/types/views/more-functions/select-function/SelectFunction.d.ts +6 -0
- package/lib/types/views/prompt/help-function/HelpFunction.d.ts +2 -0
- package/lib/types/views/prompt/resize-scroll-observer.d.ts +18 -0
- package/lib/types/views/prompt/search-function/SearchFunction.d.ts +2 -0
- package/lib/umd/index.js +1 -0
- package/package.json +113 -0
|
@@ -0,0 +1,255 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
declare const _default: {
|
|
17
|
+
CELL: {
|
|
18
|
+
description: string;
|
|
19
|
+
abstract: string;
|
|
20
|
+
links: {
|
|
21
|
+
title: string;
|
|
22
|
+
url: string;
|
|
23
|
+
}[];
|
|
24
|
+
functionParameter: {
|
|
25
|
+
infoType: {
|
|
26
|
+
name: string;
|
|
27
|
+
detail: string;
|
|
28
|
+
};
|
|
29
|
+
reference: {
|
|
30
|
+
name: string;
|
|
31
|
+
detail: string;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
ERROR_TYPE: {
|
|
36
|
+
description: string;
|
|
37
|
+
abstract: string;
|
|
38
|
+
links: {
|
|
39
|
+
title: string;
|
|
40
|
+
url: string;
|
|
41
|
+
}[];
|
|
42
|
+
functionParameter: {
|
|
43
|
+
errorVal: {
|
|
44
|
+
name: string;
|
|
45
|
+
detail: string;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
ISBLANK: {
|
|
50
|
+
description: string;
|
|
51
|
+
abstract: string;
|
|
52
|
+
links: {
|
|
53
|
+
title: string;
|
|
54
|
+
url: string;
|
|
55
|
+
}[];
|
|
56
|
+
functionParameter: {
|
|
57
|
+
value: {
|
|
58
|
+
name: string;
|
|
59
|
+
detail: string;
|
|
60
|
+
};
|
|
61
|
+
};
|
|
62
|
+
};
|
|
63
|
+
ISERR: {
|
|
64
|
+
description: string;
|
|
65
|
+
abstract: string;
|
|
66
|
+
links: {
|
|
67
|
+
title: string;
|
|
68
|
+
url: string;
|
|
69
|
+
}[];
|
|
70
|
+
functionParameter: {
|
|
71
|
+
value: {
|
|
72
|
+
name: string;
|
|
73
|
+
detail: string;
|
|
74
|
+
};
|
|
75
|
+
};
|
|
76
|
+
};
|
|
77
|
+
ISERROR: {
|
|
78
|
+
description: string;
|
|
79
|
+
abstract: string;
|
|
80
|
+
links: {
|
|
81
|
+
title: string;
|
|
82
|
+
url: string;
|
|
83
|
+
}[];
|
|
84
|
+
functionParameter: {
|
|
85
|
+
value: {
|
|
86
|
+
name: string;
|
|
87
|
+
detail: string;
|
|
88
|
+
};
|
|
89
|
+
};
|
|
90
|
+
};
|
|
91
|
+
ISEVEN: {
|
|
92
|
+
description: string;
|
|
93
|
+
abstract: string;
|
|
94
|
+
links: {
|
|
95
|
+
title: string;
|
|
96
|
+
url: string;
|
|
97
|
+
}[];
|
|
98
|
+
functionParameter: {
|
|
99
|
+
value: {
|
|
100
|
+
name: string;
|
|
101
|
+
detail: string;
|
|
102
|
+
};
|
|
103
|
+
};
|
|
104
|
+
};
|
|
105
|
+
ISFORMULA: {
|
|
106
|
+
description: string;
|
|
107
|
+
abstract: string;
|
|
108
|
+
links: {
|
|
109
|
+
title: string;
|
|
110
|
+
url: string;
|
|
111
|
+
}[];
|
|
112
|
+
functionParameter: {
|
|
113
|
+
reference: {
|
|
114
|
+
name: string;
|
|
115
|
+
detail: string;
|
|
116
|
+
};
|
|
117
|
+
};
|
|
118
|
+
};
|
|
119
|
+
ISLOGICAL: {
|
|
120
|
+
description: string;
|
|
121
|
+
abstract: string;
|
|
122
|
+
links: {
|
|
123
|
+
title: string;
|
|
124
|
+
url: string;
|
|
125
|
+
}[];
|
|
126
|
+
functionParameter: {
|
|
127
|
+
value: {
|
|
128
|
+
name: string;
|
|
129
|
+
detail: string;
|
|
130
|
+
};
|
|
131
|
+
};
|
|
132
|
+
};
|
|
133
|
+
ISNA: {
|
|
134
|
+
description: string;
|
|
135
|
+
abstract: string;
|
|
136
|
+
links: {
|
|
137
|
+
title: string;
|
|
138
|
+
url: string;
|
|
139
|
+
}[];
|
|
140
|
+
functionParameter: {
|
|
141
|
+
value: {
|
|
142
|
+
name: string;
|
|
143
|
+
detail: string;
|
|
144
|
+
};
|
|
145
|
+
};
|
|
146
|
+
};
|
|
147
|
+
ISNONTEXT: {
|
|
148
|
+
description: string;
|
|
149
|
+
abstract: string;
|
|
150
|
+
links: {
|
|
151
|
+
title: string;
|
|
152
|
+
url: string;
|
|
153
|
+
}[];
|
|
154
|
+
functionParameter: {
|
|
155
|
+
value: {
|
|
156
|
+
name: string;
|
|
157
|
+
detail: string;
|
|
158
|
+
};
|
|
159
|
+
};
|
|
160
|
+
};
|
|
161
|
+
ISNUMBER: {
|
|
162
|
+
description: string;
|
|
163
|
+
abstract: string;
|
|
164
|
+
links: {
|
|
165
|
+
title: string;
|
|
166
|
+
url: string;
|
|
167
|
+
}[];
|
|
168
|
+
functionParameter: {
|
|
169
|
+
value: {
|
|
170
|
+
name: string;
|
|
171
|
+
detail: string;
|
|
172
|
+
};
|
|
173
|
+
};
|
|
174
|
+
};
|
|
175
|
+
ISODD: {
|
|
176
|
+
description: string;
|
|
177
|
+
abstract: string;
|
|
178
|
+
links: {
|
|
179
|
+
title: string;
|
|
180
|
+
url: string;
|
|
181
|
+
}[];
|
|
182
|
+
functionParameter: {
|
|
183
|
+
value: {
|
|
184
|
+
name: string;
|
|
185
|
+
detail: string;
|
|
186
|
+
};
|
|
187
|
+
};
|
|
188
|
+
};
|
|
189
|
+
ISREF: {
|
|
190
|
+
description: string;
|
|
191
|
+
abstract: string;
|
|
192
|
+
links: {
|
|
193
|
+
title: string;
|
|
194
|
+
url: string;
|
|
195
|
+
}[];
|
|
196
|
+
functionParameter: {
|
|
197
|
+
value: {
|
|
198
|
+
name: string;
|
|
199
|
+
detail: string;
|
|
200
|
+
};
|
|
201
|
+
};
|
|
202
|
+
};
|
|
203
|
+
ISTEXT: {
|
|
204
|
+
description: string;
|
|
205
|
+
abstract: string;
|
|
206
|
+
links: {
|
|
207
|
+
title: string;
|
|
208
|
+
url: string;
|
|
209
|
+
}[];
|
|
210
|
+
functionParameter: {
|
|
211
|
+
value: {
|
|
212
|
+
name: string;
|
|
213
|
+
detail: string;
|
|
214
|
+
};
|
|
215
|
+
};
|
|
216
|
+
};
|
|
217
|
+
N: {
|
|
218
|
+
description: string;
|
|
219
|
+
abstract: string;
|
|
220
|
+
links: {
|
|
221
|
+
title: string;
|
|
222
|
+
url: string;
|
|
223
|
+
}[];
|
|
224
|
+
functionParameter: {
|
|
225
|
+
value: {
|
|
226
|
+
name: string;
|
|
227
|
+
detail: string;
|
|
228
|
+
};
|
|
229
|
+
};
|
|
230
|
+
};
|
|
231
|
+
NA: {
|
|
232
|
+
description: string;
|
|
233
|
+
abstract: string;
|
|
234
|
+
links: {
|
|
235
|
+
title: string;
|
|
236
|
+
url: string;
|
|
237
|
+
}[];
|
|
238
|
+
functionParameter: {};
|
|
239
|
+
};
|
|
240
|
+
TYPE: {
|
|
241
|
+
description: string;
|
|
242
|
+
abstract: string;
|
|
243
|
+
links: {
|
|
244
|
+
title: string;
|
|
245
|
+
url: string;
|
|
246
|
+
}[];
|
|
247
|
+
functionParameter: {
|
|
248
|
+
value: {
|
|
249
|
+
name: string;
|
|
250
|
+
detail: string;
|
|
251
|
+
};
|
|
252
|
+
};
|
|
253
|
+
};
|
|
254
|
+
};
|
|
255
|
+
export default _default;
|
|
@@ -0,0 +1,327 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Copyright 2023-present DreamNum Inc.
|
|
3
|
+
*
|
|
4
|
+
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
5
|
+
* you may not use this file except in compliance with the License.
|
|
6
|
+
* You may obtain a copy of the License at
|
|
7
|
+
*
|
|
8
|
+
* http://www.apache.org/licenses/LICENSE-2.0
|
|
9
|
+
*
|
|
10
|
+
* Unless required by applicable law or agreed to in writing, software
|
|
11
|
+
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
12
|
+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
13
|
+
* See the License for the specific language governing permissions and
|
|
14
|
+
* limitations under the License.
|
|
15
|
+
*/
|
|
16
|
+
declare const _default: {
|
|
17
|
+
CELL: {
|
|
18
|
+
description: string;
|
|
19
|
+
abstract: string;
|
|
20
|
+
links: {
|
|
21
|
+
title: string;
|
|
22
|
+
url: string;
|
|
23
|
+
}[];
|
|
24
|
+
functionParameter: {
|
|
25
|
+
infoType: {
|
|
26
|
+
name: string;
|
|
27
|
+
detail: string;
|
|
28
|
+
};
|
|
29
|
+
reference: {
|
|
30
|
+
name: string;
|
|
31
|
+
detail: string;
|
|
32
|
+
};
|
|
33
|
+
};
|
|
34
|
+
};
|
|
35
|
+
ERROR_TYPE: {
|
|
36
|
+
description: string;
|
|
37
|
+
abstract: string;
|
|
38
|
+
links: {
|
|
39
|
+
title: string;
|
|
40
|
+
url: string;
|
|
41
|
+
}[];
|
|
42
|
+
functionParameter: {
|
|
43
|
+
errorVal: {
|
|
44
|
+
name: string;
|
|
45
|
+
detail: string;
|
|
46
|
+
};
|
|
47
|
+
};
|
|
48
|
+
};
|
|
49
|
+
INFO: {
|
|
50
|
+
description: string;
|
|
51
|
+
abstract: string;
|
|
52
|
+
links: {
|
|
53
|
+
title: string;
|
|
54
|
+
url: string;
|
|
55
|
+
}[];
|
|
56
|
+
functionParameter: {
|
|
57
|
+
number1: {
|
|
58
|
+
name: string;
|
|
59
|
+
detail: string;
|
|
60
|
+
};
|
|
61
|
+
number2: {
|
|
62
|
+
name: string;
|
|
63
|
+
detail: string;
|
|
64
|
+
};
|
|
65
|
+
};
|
|
66
|
+
};
|
|
67
|
+
ISBLANK: {
|
|
68
|
+
description: string;
|
|
69
|
+
abstract: string;
|
|
70
|
+
links: {
|
|
71
|
+
title: string;
|
|
72
|
+
url: string;
|
|
73
|
+
}[];
|
|
74
|
+
functionParameter: {
|
|
75
|
+
value: {
|
|
76
|
+
name: string;
|
|
77
|
+
detail: string;
|
|
78
|
+
};
|
|
79
|
+
};
|
|
80
|
+
};
|
|
81
|
+
ISERR: {
|
|
82
|
+
description: string;
|
|
83
|
+
abstract: string;
|
|
84
|
+
links: {
|
|
85
|
+
title: string;
|
|
86
|
+
url: string;
|
|
87
|
+
}[];
|
|
88
|
+
functionParameter: {
|
|
89
|
+
value: {
|
|
90
|
+
name: string;
|
|
91
|
+
detail: string;
|
|
92
|
+
};
|
|
93
|
+
};
|
|
94
|
+
};
|
|
95
|
+
ISERROR: {
|
|
96
|
+
description: string;
|
|
97
|
+
abstract: string;
|
|
98
|
+
links: {
|
|
99
|
+
title: string;
|
|
100
|
+
url: string;
|
|
101
|
+
}[];
|
|
102
|
+
functionParameter: {
|
|
103
|
+
value: {
|
|
104
|
+
name: string;
|
|
105
|
+
detail: string;
|
|
106
|
+
};
|
|
107
|
+
};
|
|
108
|
+
};
|
|
109
|
+
ISEVEN: {
|
|
110
|
+
description: string;
|
|
111
|
+
abstract: string;
|
|
112
|
+
links: {
|
|
113
|
+
title: string;
|
|
114
|
+
url: string;
|
|
115
|
+
}[];
|
|
116
|
+
functionParameter: {
|
|
117
|
+
value: {
|
|
118
|
+
name: string;
|
|
119
|
+
detail: string;
|
|
120
|
+
};
|
|
121
|
+
};
|
|
122
|
+
};
|
|
123
|
+
ISFORMULA: {
|
|
124
|
+
description: string;
|
|
125
|
+
abstract: string;
|
|
126
|
+
links: {
|
|
127
|
+
title: string;
|
|
128
|
+
url: string;
|
|
129
|
+
}[];
|
|
130
|
+
functionParameter: {
|
|
131
|
+
reference: {
|
|
132
|
+
name: string;
|
|
133
|
+
detail: string;
|
|
134
|
+
};
|
|
135
|
+
};
|
|
136
|
+
};
|
|
137
|
+
ISLOGICAL: {
|
|
138
|
+
description: string;
|
|
139
|
+
abstract: string;
|
|
140
|
+
links: {
|
|
141
|
+
title: string;
|
|
142
|
+
url: string;
|
|
143
|
+
}[];
|
|
144
|
+
functionParameter: {
|
|
145
|
+
value: {
|
|
146
|
+
name: string;
|
|
147
|
+
detail: string;
|
|
148
|
+
};
|
|
149
|
+
};
|
|
150
|
+
};
|
|
151
|
+
ISNA: {
|
|
152
|
+
description: string;
|
|
153
|
+
abstract: string;
|
|
154
|
+
links: {
|
|
155
|
+
title: string;
|
|
156
|
+
url: string;
|
|
157
|
+
}[];
|
|
158
|
+
functionParameter: {
|
|
159
|
+
value: {
|
|
160
|
+
name: string;
|
|
161
|
+
detail: string;
|
|
162
|
+
};
|
|
163
|
+
};
|
|
164
|
+
};
|
|
165
|
+
ISNONTEXT: {
|
|
166
|
+
description: string;
|
|
167
|
+
abstract: string;
|
|
168
|
+
links: {
|
|
169
|
+
title: string;
|
|
170
|
+
url: string;
|
|
171
|
+
}[];
|
|
172
|
+
functionParameter: {
|
|
173
|
+
value: {
|
|
174
|
+
name: string;
|
|
175
|
+
detail: string;
|
|
176
|
+
};
|
|
177
|
+
};
|
|
178
|
+
};
|
|
179
|
+
ISNUMBER: {
|
|
180
|
+
description: string;
|
|
181
|
+
abstract: string;
|
|
182
|
+
links: {
|
|
183
|
+
title: string;
|
|
184
|
+
url: string;
|
|
185
|
+
}[];
|
|
186
|
+
functionParameter: {
|
|
187
|
+
value: {
|
|
188
|
+
name: string;
|
|
189
|
+
detail: string;
|
|
190
|
+
};
|
|
191
|
+
};
|
|
192
|
+
};
|
|
193
|
+
ISODD: {
|
|
194
|
+
description: string;
|
|
195
|
+
abstract: string;
|
|
196
|
+
links: {
|
|
197
|
+
title: string;
|
|
198
|
+
url: string;
|
|
199
|
+
}[];
|
|
200
|
+
functionParameter: {
|
|
201
|
+
value: {
|
|
202
|
+
name: string;
|
|
203
|
+
detail: string;
|
|
204
|
+
};
|
|
205
|
+
};
|
|
206
|
+
};
|
|
207
|
+
ISOMITTED: {
|
|
208
|
+
description: string;
|
|
209
|
+
abstract: string;
|
|
210
|
+
links: {
|
|
211
|
+
title: string;
|
|
212
|
+
url: string;
|
|
213
|
+
}[];
|
|
214
|
+
functionParameter: {
|
|
215
|
+
number1: {
|
|
216
|
+
name: string;
|
|
217
|
+
detail: string;
|
|
218
|
+
};
|
|
219
|
+
number2: {
|
|
220
|
+
name: string;
|
|
221
|
+
detail: string;
|
|
222
|
+
};
|
|
223
|
+
};
|
|
224
|
+
};
|
|
225
|
+
ISREF: {
|
|
226
|
+
description: string;
|
|
227
|
+
abstract: string;
|
|
228
|
+
links: {
|
|
229
|
+
title: string;
|
|
230
|
+
url: string;
|
|
231
|
+
}[];
|
|
232
|
+
functionParameter: {
|
|
233
|
+
value: {
|
|
234
|
+
name: string;
|
|
235
|
+
detail: string;
|
|
236
|
+
};
|
|
237
|
+
};
|
|
238
|
+
};
|
|
239
|
+
ISTEXT: {
|
|
240
|
+
description: string;
|
|
241
|
+
abstract: string;
|
|
242
|
+
links: {
|
|
243
|
+
title: string;
|
|
244
|
+
url: string;
|
|
245
|
+
}[];
|
|
246
|
+
functionParameter: {
|
|
247
|
+
value: {
|
|
248
|
+
name: string;
|
|
249
|
+
detail: string;
|
|
250
|
+
};
|
|
251
|
+
};
|
|
252
|
+
};
|
|
253
|
+
N: {
|
|
254
|
+
description: string;
|
|
255
|
+
abstract: string;
|
|
256
|
+
links: {
|
|
257
|
+
title: string;
|
|
258
|
+
url: string;
|
|
259
|
+
}[];
|
|
260
|
+
functionParameter: {
|
|
261
|
+
value: {
|
|
262
|
+
name: string;
|
|
263
|
+
detail: string;
|
|
264
|
+
};
|
|
265
|
+
};
|
|
266
|
+
};
|
|
267
|
+
NA: {
|
|
268
|
+
description: string;
|
|
269
|
+
abstract: string;
|
|
270
|
+
links: {
|
|
271
|
+
title: string;
|
|
272
|
+
url: string;
|
|
273
|
+
}[];
|
|
274
|
+
functionParameter: {};
|
|
275
|
+
};
|
|
276
|
+
SHEET: {
|
|
277
|
+
description: string;
|
|
278
|
+
abstract: string;
|
|
279
|
+
links: {
|
|
280
|
+
title: string;
|
|
281
|
+
url: string;
|
|
282
|
+
}[];
|
|
283
|
+
functionParameter: {
|
|
284
|
+
number1: {
|
|
285
|
+
name: string;
|
|
286
|
+
detail: string;
|
|
287
|
+
};
|
|
288
|
+
number2: {
|
|
289
|
+
name: string;
|
|
290
|
+
detail: string;
|
|
291
|
+
};
|
|
292
|
+
};
|
|
293
|
+
};
|
|
294
|
+
SHEETS: {
|
|
295
|
+
description: string;
|
|
296
|
+
abstract: string;
|
|
297
|
+
links: {
|
|
298
|
+
title: string;
|
|
299
|
+
url: string;
|
|
300
|
+
}[];
|
|
301
|
+
functionParameter: {
|
|
302
|
+
number1: {
|
|
303
|
+
name: string;
|
|
304
|
+
detail: string;
|
|
305
|
+
};
|
|
306
|
+
number2: {
|
|
307
|
+
name: string;
|
|
308
|
+
detail: string;
|
|
309
|
+
};
|
|
310
|
+
};
|
|
311
|
+
};
|
|
312
|
+
TYPE: {
|
|
313
|
+
description: string;
|
|
314
|
+
abstract: string;
|
|
315
|
+
links: {
|
|
316
|
+
title: string;
|
|
317
|
+
url: string;
|
|
318
|
+
}[];
|
|
319
|
+
functionParameter: {
|
|
320
|
+
value: {
|
|
321
|
+
name: string;
|
|
322
|
+
detail: string;
|
|
323
|
+
};
|
|
324
|
+
};
|
|
325
|
+
};
|
|
326
|
+
};
|
|
327
|
+
export default _default;
|