@univerjs/sheets-formula 0.2.1 → 0.2.3

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 (62) hide show
  1. package/README.md +13 -7
  2. package/lib/cjs/index.js +4 -4
  3. package/lib/es/index.js +3908 -3854
  4. package/lib/locale/en-US.json +34 -62
  5. package/lib/locale/ru-RU.json +34 -62
  6. package/lib/locale/vi-VN.json +7425 -0
  7. package/lib/locale/zh-CN.json +38 -66
  8. package/lib/locale/zh-TW.json +10304 -0
  9. package/lib/types/controllers/formula-editor-show.controller.d.ts +7 -3
  10. package/lib/types/controllers/formula-ui.controller.d.ts +1 -0
  11. package/lib/types/controllers/prompt.controller.d.ts +18 -22
  12. package/lib/types/controllers/trigger-calculation.controller.d.ts +4 -0
  13. package/lib/types/controllers/update-formula.controller.d.ts +2 -2
  14. package/lib/types/controllers/utils/ref-range-formula.d.ts +0 -17
  15. package/lib/types/formula-ui-plugin.d.ts +8 -2
  16. package/lib/types/index.d.ts +2 -2
  17. package/lib/types/locale/en-US.d.ts +14 -42
  18. package/lib/types/locale/function-list/array/vi-VN.d.ts +17 -0
  19. package/lib/types/locale/function-list/array/zh-TW.d.ts +17 -0
  20. package/lib/types/locale/function-list/compatibility/vi-VN.d.ts +702 -0
  21. package/lib/types/locale/function-list/compatibility/zh-TW.d.ts +702 -0
  22. package/lib/types/locale/function-list/cube/vi-VN.d.ts +144 -0
  23. package/lib/types/locale/function-list/cube/zh-TW.d.ts +144 -0
  24. package/lib/types/locale/function-list/database/vi-VN.d.ts +234 -0
  25. package/lib/types/locale/function-list/database/zh-TW.d.ts +234 -0
  26. package/lib/types/locale/function-list/date/vi-VN.d.ts +379 -0
  27. package/lib/types/locale/function-list/date/zh-TW.d.ts +438 -0
  28. package/lib/types/locale/function-list/engineering/vi-VN.d.ts +990 -0
  29. package/lib/types/locale/function-list/engineering/zh-TW.d.ts +990 -0
  30. package/lib/types/locale/function-list/financial/vi-VN.d.ts +954 -0
  31. package/lib/types/locale/function-list/financial/zh-TW.d.ts +1008 -0
  32. package/lib/types/locale/function-list/information/vi-VN.d.ts +3 -0
  33. package/lib/types/locale/function-list/information/zh-TW.d.ts +352 -0
  34. package/lib/types/locale/function-list/logical/vi-VN.d.ts +368 -0
  35. package/lib/types/locale/function-list/logical/zh-TW.d.ts +368 -0
  36. package/lib/types/locale/function-list/lookup/vi-VN.d.ts +188 -0
  37. package/lib/types/locale/function-list/lookup/zh-TW.d.ts +752 -0
  38. package/lib/types/locale/function-list/math/en-US.d.ts +14 -42
  39. package/lib/types/locale/function-list/math/ja-JP.d.ts +14 -42
  40. package/lib/types/locale/function-list/math/vi-VN.d.ts +3 -0
  41. package/lib/types/locale/function-list/math/zh-CN.d.ts +14 -42
  42. package/lib/types/locale/function-list/math/zh-TW.d.ts +1498 -0
  43. package/lib/types/locale/function-list/statistical/vi-VN.d.ts +394 -0
  44. package/lib/types/locale/function-list/statistical/zh-TW.d.ts +2060 -0
  45. package/lib/types/locale/function-list/text/vi-VN.d.ts +650 -0
  46. package/lib/types/locale/function-list/text/zh-TW.d.ts +852 -0
  47. package/lib/types/locale/function-list/univer/vi-VN.d.ts +17 -0
  48. package/lib/types/locale/function-list/univer/zh-TW.d.ts +17 -0
  49. package/lib/types/locale/function-list/web/vi-VN.d.ts +3 -0
  50. package/lib/types/locale/function-list/web/zh-TW.d.ts +72 -0
  51. package/lib/types/locale/ru-RU.d.ts +14 -42
  52. package/lib/types/locale/vi-VN.d.ts +6699 -0
  53. package/lib/types/locale/zh-CN.d.ts +14 -42
  54. package/lib/types/locale/zh-TW.d.ts +9300 -0
  55. package/lib/types/services/prompt.service.d.ts +0 -6
  56. package/lib/types/services/register-function.service.d.ts +19 -5
  57. package/lib/types/services/register-other-formula.service.d.ts +1 -0
  58. package/lib/types/services/remote/remote-register-function.service.d.ts +17 -0
  59. package/lib/types/services/render-services/ref-selections.render-service.d.ts +35 -0
  60. package/lib/umd/index.js +4 -4
  61. package/package.json +21 -19
  62. package/lib/types/services/formula-custom-function.service.d.ts +0 -19
@@ -1,7 +1,7 @@
1
1
  import { Workbook, Disposable, ICommandService, ThemeService } from '@univerjs/core';
2
2
  import { FormulaDataModel } from '@univerjs/engine-formula';
3
3
  import { IRenderContext, IRenderModule, IRenderManagerService } from '@univerjs/engine-render';
4
- import { IEditorBridgeService, ISelectionRenderService, SheetSkeletonManagerService } from '@univerjs/sheets-ui';
4
+ import { IEditorBridgeService, SheetSkeletonManagerService } from '@univerjs/sheets-ui';
5
5
 
6
6
  export declare class FormulaEditorShowController extends Disposable implements IRenderModule {
7
7
  private readonly _context;
@@ -9,13 +9,17 @@ export declare class FormulaEditorShowController extends Disposable implements I
9
9
  private readonly _formulaDataModel;
10
10
  private readonly _themeService;
11
11
  private readonly _renderManagerService;
12
- private readonly _selectionRenderService;
13
12
  private readonly _sheetSkeletonManagerService;
14
13
  private readonly _commandService;
15
14
  private _previousShape;
16
- constructor(_context: IRenderContext<Workbook>, _editorBridgeService: IEditorBridgeService, _formulaDataModel: FormulaDataModel, _themeService: ThemeService, _renderManagerService: IRenderManagerService, _selectionRenderService: ISelectionRenderService, _sheetSkeletonManagerService: SheetSkeletonManagerService, _commandService: ICommandService);
15
+ constructor(_context: IRenderContext<Workbook>, _editorBridgeService: IEditorBridgeService, _formulaDataModel: FormulaDataModel, _themeService: ThemeService, _renderManagerService: IRenderManagerService, _sheetSkeletonManagerService: SheetSkeletonManagerService, _commandService: ICommandService);
17
16
  private _initInterceptorEditorStart;
18
17
  private _commandExecutedListener;
18
+ private _displayArrayFormulaRangeShape;
19
19
  private _createArrayFormulaRangeShape;
20
20
  private _removeArrayFormulaRangeShape;
21
+ private _refreshArrayFormulaRangeShape;
22
+ private _checkCurrentSheet;
23
+ private _refreshArrayFormulaRangeShapeByRanges;
24
+ private _refreshArrayFormulaRangeShapeByRow;
21
25
  }
@@ -6,6 +6,7 @@ import { BaseFunction, IFunctionInfo, IFunctionNames } from '@univerjs/engine-fo
6
6
 
7
7
  export interface IUniverSheetsFormulaConfig {
8
8
  menu: MenuConfig;
9
+ notExecuteFormula?: boolean;
9
10
  description: IFunctionInfo[];
10
11
  function: Array<[Ctor<BaseFunction>, IFunctionNames]>;
11
12
  }
@@ -2,8 +2,8 @@ import { Disposable, ICommandService, IContextService, IUniverInstanceService, T
2
2
  import { TextSelectionManagerService } from '@univerjs/docs';
3
3
  import { LexerTreeBuilder } from '@univerjs/engine-formula';
4
4
  import { IRenderManagerService, ITextSelectionRenderManager } from '@univerjs/engine-render';
5
- import { SelectionManagerService } from '@univerjs/sheets';
6
- import { EditorBridgeService, ISelectionRenderService } from '@univerjs/sheets-ui';
5
+ import { SheetsSelectionsService } from '@univerjs/sheets';
6
+ import { EditorBridgeService } from '@univerjs/sheets-ui';
7
7
  import { IContextMenuService, IEditorService } from '@univerjs/ui';
8
8
  import { IDescriptionService } from '../services/description.service';
9
9
  import { IFormulaPromptService } from '../services/prompt.service';
@@ -17,9 +17,9 @@ export declare class PromptController extends Disposable {
17
17
  private readonly _lexerTreeBuilder;
18
18
  private readonly _renderManagerService;
19
19
  private readonly _themeService;
20
- private readonly _selectionManagerService;
20
+ private readonly _sheetsSelectionsService;
21
+ private readonly _refSelectionsService;
21
22
  private readonly _univerInstanceService;
22
- private readonly _selectionRenderService;
23
23
  private readonly _descriptionService;
24
24
  private readonly _textSelectionManagerService;
25
25
  private readonly _contextMenuService;
@@ -38,7 +38,8 @@ export declare class PromptController extends Disposable {
38
38
  private _userCursorMove;
39
39
  private _previousEditorUnitId;
40
40
  private _existsSequenceNode;
41
- constructor(_commandService: ICommandService, _contextService: IContextService, _textSelectionRenderManager: ITextSelectionRenderManager, _editorBridgeService: EditorBridgeService, _formulaPromptService: IFormulaPromptService, _lexerTreeBuilder: LexerTreeBuilder, _renderManagerService: IRenderManagerService, _themeService: ThemeService, _selectionManagerService: SelectionManagerService, _univerInstanceService: IUniverInstanceService, _selectionRenderService: ISelectionRenderService, _descriptionService: IDescriptionService, _textSelectionManagerService: TextSelectionManagerService, _contextMenuService: IContextMenuService, _editorService: IEditorService);
41
+ private get _selectionRenderService();
42
+ constructor(_commandService: ICommandService, _contextService: IContextService, _textSelectionRenderManager: ITextSelectionRenderManager, _editorBridgeService: EditorBridgeService, _formulaPromptService: IFormulaPromptService, _lexerTreeBuilder: LexerTreeBuilder, _renderManagerService: IRenderManagerService, _themeService: ThemeService, _sheetsSelectionsService: SheetsSelectionsService, _refSelectionsService: SheetsSelectionsService, _univerInstanceService: IUniverInstanceService, _descriptionService: IDescriptionService, _textSelectionManagerService: TextSelectionManagerService, _contextMenuService: IContextMenuService, _editorService: IEditorService);
42
43
  dispose(): void;
43
44
  private _resetTemp;
44
45
  private _initialize;
@@ -48,29 +49,29 @@ export declare class PromptController extends Disposable {
48
49
  private _initialExitEditor;
49
50
  private _initialChangeEditor;
50
51
  private _closeRangePrompt;
51
- private _initialRefSelectionUpdateEvent;
52
- private _selectionChanging;
53
- private _initialRefSelectionInsertEvent;
52
+ private _initSelectionsEndListener;
53
+ private _updateSelecting;
54
+ private _selectionsChangeDisposables;
55
+ private _enableRefSelectionsRenderService;
56
+ private _disposeSelectionsChangeListeners;
57
+ private _insertControlSelections;
54
58
  private _initAcceptFormula;
55
59
  private _changeFunctionPanelState;
56
60
  private _changeHelpFunctionPanelState;
57
61
  private _hideFunctionPanel;
58
- /**
59
- * If the cursor is located at a formula token,
60
- * it is necessary to prohibit the behavior of closing the editor by clicking on the canvas,
61
- * in order to generate reference text for the formula.
62
- */
63
- private _changeKeepVisibleHideState;
62
+ private _checkShouldEnterSelectingMode;
64
63
  /**
65
64
  *
66
65
  * @returns Return the character under the current cursor in the editor.
67
66
  */
68
67
  private _getCurrentChar;
68
+ private _isSelectingMode;
69
+ private _enterSelectingMode;
69
70
  /**
70
71
  * Disable the ref string generation mode. In the ref string generation mode,
71
72
  * users can select a certain area using the mouse and arrow keys, and convert the area into a ref string.
72
73
  */
73
- private _disableForceKeepVisible;
74
+ private _quitSelectingMode;
74
75
  private _getCurrentBodyDataStreamAndOffset;
75
76
  private _getFormulaAndCellEditorBody;
76
77
  private _editorModelUnitIds;
@@ -82,10 +83,6 @@ export declare class PromptController extends Disposable {
82
83
  */
83
84
  private _contextSwitch;
84
85
  private _getContextState;
85
- /**
86
- * Switch from formula selection state to regular selection state.
87
- */
88
- private _switchSelectionPlugin;
89
86
  /**
90
87
  * Highlight cell editor and formula bar editor.
91
88
  */
@@ -125,7 +122,7 @@ export declare class PromptController extends Disposable {
125
122
  * @param textRuns
126
123
  */
127
124
  private _updateEditorModel;
128
- private _inertControlSelectionReplace;
125
+ private _insertControlSelectionReplace;
129
126
  /**
130
127
  * pro/issues/450
131
128
  * In range selection mode, certain measures are implemented to ensure that the selection behavior is processed correctly.
@@ -136,9 +133,8 @@ export declare class PromptController extends Disposable {
136
133
  * In range selection mode, certain measures are implemented to ensure that the selection behavior is processed correctly.
137
134
  */
138
135
  private _resetSequenceNodes;
139
- private _inertControlSelection;
140
136
  private _updateRefSelectionStyle;
141
- private _changeControlSelection;
137
+ private _onSelectionControlChange;
142
138
  private _refreshFormulaAndCellEditor;
143
139
  private _setRemainCapture;
144
140
  private _cursorStateListener;
@@ -27,6 +27,10 @@ export declare class TriggerCalculationController extends Disposable {
27
27
  private _initialExecuteFormulaProcessListener;
28
28
  private _resetExecutingDirtyData;
29
29
  private _initialExecuteFormula;
30
+ /**
31
+ * The user manually stops the progress bar
32
+ */
33
+ private _initialProgressBar;
30
34
  /**
31
35
  * Update progress by completed count
32
36
  * @param completedCount
@@ -1,6 +1,6 @@
1
1
  import { Disposable, ICommandService, IUniverInstanceService } from '@univerjs/core';
2
2
  import { FormulaDataModel, LexerTreeBuilder } from '@univerjs/engine-formula';
3
- import { SelectionManagerService, SheetInterceptorService } from '@univerjs/sheets';
3
+ import { SheetInterceptorService, SheetsSelectionsService } from '@univerjs/sheets';
4
4
  import { Injector } from '@wendellhu/redi';
5
5
  import { IEditorService } from '@univerjs/ui';
6
6
 
@@ -24,7 +24,7 @@ export declare class UpdateFormulaController extends Disposable {
24
24
  private _selectionManagerService;
25
25
  private readonly _editorService;
26
26
  readonly _injector: Injector;
27
- constructor(_univerInstanceService: IUniverInstanceService, _commandService: ICommandService, _lexerTreeBuilder: LexerTreeBuilder, _formulaDataModel: FormulaDataModel, _sheetInterceptorService: SheetInterceptorService, _selectionManagerService: SelectionManagerService, _editorService: IEditorService, _injector: Injector);
27
+ constructor(_univerInstanceService: IUniverInstanceService, _commandService: ICommandService, _lexerTreeBuilder: LexerTreeBuilder, _formulaDataModel: FormulaDataModel, _sheetInterceptorService: SheetInterceptorService, _selectionManagerService: SheetsSelectionsService, _editorService: IEditorService, _injector: Injector);
28
28
  private _initialize;
29
29
  private _commandExecutedListener;
30
30
  private _handleSetRangeValuesMutation;
@@ -63,21 +63,4 @@ export declare function refRangeFormula(oldFormulaData: IFormulaData, newFormula
63
63
  * └──────────────────┴─────┴───┴───┴───────────┴─────┘
64
64
  */
65
65
  export declare function formulaDataItemToCellData(formulaDataItem: Nullable<IFormulaDataItem>): Nullable<ICellData>;
66
- /**
67
- * Transfer the formulaDataItem to the cellData, contains formula
68
- * ┌────────────────────────────────┬─────────────────┐
69
- * │ IFormulaDataItem │ ICellData │
70
- * ├──────────────────┬─────┬───┬───┼───────────┬─────┤
71
- * │ f │ si │ x │ y │ f │ si │
72
- * ├──────────────────┼─────┼───┼───┼───────────┼─────┤
73
- * │ =SUM(1) │ │ │ │ =SUM(1) │ │
74
- * │ │ id1 │ │ │ │ id1 │
75
- * │ =SUM(1) │ id1 │ │ │ =SUM(1) │ │
76
- * │ =SUM(1) │ id1 │ 0 │ 0 │ =SUM(1) │ │
77
- * │ =SUM(1) │ id1 │ 0 │ 1 │ =SUM(1) │ │
78
- * └──────────────────┴─────┴───┴───┴───────────┴─────┘
79
- *
80
- * The fifth case: The value f of the formula is already the result value. If the formula content of si contains #REF, it cannot be obtained from the formula offset of si, and the result value must be stored directly
81
- */
82
- export declare function formulaDataItemToCellDataFormula(formulaDataItem: Nullable<IFormulaDataItem>): Nullable<ICellData>;
83
66
  export declare function isFormulaDataItem(cell: IFormulaDataItem): boolean;
@@ -3,6 +3,14 @@ import { Injector } from '@wendellhu/redi';
3
3
  import { IRenderManagerService } from '@univerjs/engine-render';
4
4
  import { IUniverSheetsFormulaConfig } from './controllers/formula-ui.controller';
5
5
 
6
+ export declare class UniverRemoteSheetsFormulaPlugin extends Plugin {
7
+ private readonly _config;
8
+ readonly _injector: Injector;
9
+ static pluginName: string;
10
+ static type: UniverInstanceType;
11
+ constructor(_config: {}, _injector: Injector);
12
+ onStarting(injector: Injector): void;
13
+ }
6
14
  /**
7
15
  * The configuration of the formula UI plugin.
8
16
  */
@@ -15,8 +23,6 @@ export declare class UniverSheetsFormulaPlugin extends Plugin {
15
23
  constructor(_config: Partial<IUniverSheetsFormulaConfig>, _injector: Injector, _renderManagerService: IRenderManagerService);
16
24
  onStarting(): void;
17
25
  onRendered(): void;
18
- private _registerRenderModules;
19
- _init(): void;
20
26
  }
21
27
  export declare class UniverSheetsFormulaMobilePlugin extends Plugin {
22
28
  private readonly _config;
@@ -13,13 +13,13 @@
13
13
  * See the License for the specific language governing permissions and
14
14
  * limitations under the License.
15
15
  */
16
- export { UniverSheetsFormulaPlugin, UniverSheetsFormulaMobilePlugin } from './formula-ui-plugin';
16
+ export { UniverRemoteSheetsFormulaPlugin, UniverSheetsFormulaPlugin, UniverSheetsFormulaMobilePlugin } from './formula-ui-plugin';
17
17
  export { IDescriptionService } from './services/description.service';
18
18
  export { DescriptionService } from './services/description.service';
19
- export { FormulaCustomFunctionService, IFormulaCustomFunctionService, } from './services/formula-custom-function.service';
20
19
  export type { IRegisterFunctionParams, IUnregisterFunctionParams } from './services/register-function.service';
21
20
  export { RegisterFunctionService } from './services/register-function.service';
22
21
  export { IRegisterFunctionService } from './services/register-function.service';
22
+ export { IRemoteRegisterFunctionService, RemoteRegisterFunctionService } from './services/remote/remote-register-function.service';
23
23
  export { FormulaRefRangeService } from './services/formula-ref-range.service';
24
24
  export { RegisterOtherFormulaService } from './services/register-other-formula.service';
25
25
  export type { IFormulaInfo, IOtherFormulaResult } from './services/formula-common';
@@ -6435,11 +6435,7 @@ declare const _default: {
6435
6435
  url: string;
6436
6436
  }[];
6437
6437
  functionParameter: {
6438
- number1: {
6439
- name: string;
6440
- detail: string;
6441
- };
6442
- number2: {
6438
+ number: {
6443
6439
  name: string;
6444
6440
  detail: string;
6445
6441
  };
@@ -6563,11 +6559,15 @@ declare const _default: {
6563
6559
  url: string;
6564
6560
  }[];
6565
6561
  functionParameter: {
6566
- number1: {
6562
+ number: {
6567
6563
  name: string;
6568
6564
  detail: string;
6569
6565
  };
6570
- number2: {
6566
+ radix: {
6567
+ name: string;
6568
+ detail: string;
6569
+ };
6570
+ minLength: {
6571
6571
  name: string;
6572
6572
  detail: string;
6573
6573
  };
@@ -6685,11 +6685,7 @@ declare const _default: {
6685
6685
  url: string;
6686
6686
  }[];
6687
6687
  functionParameter: {
6688
- number1: {
6689
- name: string;
6690
- detail: string;
6691
- };
6692
- number2: {
6688
+ number: {
6693
6689
  name: string;
6694
6690
  detail: string;
6695
6691
  };
@@ -6703,11 +6699,7 @@ declare const _default: {
6703
6699
  url: string;
6704
6700
  }[];
6705
6701
  functionParameter: {
6706
- number1: {
6707
- name: string;
6708
- detail: string;
6709
- };
6710
- number2: {
6702
+ number: {
6711
6703
  name: string;
6712
6704
  detail: string;
6713
6705
  };
@@ -6721,11 +6713,7 @@ declare const _default: {
6721
6713
  url: string;
6722
6714
  }[];
6723
6715
  functionParameter: {
6724
- number1: {
6725
- name: string;
6726
- detail: string;
6727
- };
6728
- number2: {
6716
+ number: {
6729
6717
  name: string;
6730
6718
  detail: string;
6731
6719
  };
@@ -6739,11 +6727,7 @@ declare const _default: {
6739
6727
  url: string;
6740
6728
  }[];
6741
6729
  functionParameter: {
6742
- number1: {
6743
- name: string;
6744
- detail: string;
6745
- };
6746
- number2: {
6730
+ number: {
6747
6731
  name: string;
6748
6732
  detail: string;
6749
6733
  };
@@ -6757,11 +6741,7 @@ declare const _default: {
6757
6741
  url: string;
6758
6742
  }[];
6759
6743
  functionParameter: {
6760
- number1: {
6761
- name: string;
6762
- detail: string;
6763
- };
6764
- number2: {
6744
+ number: {
6765
6745
  name: string;
6766
6746
  detail: string;
6767
6747
  };
@@ -7513,11 +7493,7 @@ declare const _default: {
7513
7493
  url: string;
7514
7494
  }[];
7515
7495
  functionParameter: {
7516
- number1: {
7517
- name: string;
7518
- detail: string;
7519
- };
7520
- number2: {
7496
+ number: {
7521
7497
  name: string;
7522
7498
  detail: string;
7523
7499
  };
@@ -7531,11 +7507,7 @@ declare const _default: {
7531
7507
  url: string;
7532
7508
  }[];
7533
7509
  functionParameter: {
7534
- number1: {
7535
- name: string;
7536
- detail: string;
7537
- };
7538
- number2: {
7510
+ number: {
7539
7511
  name: string;
7540
7512
  detail: string;
7541
7513
  };
@@ -0,0 +1,17 @@
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
+ export default _default;
@@ -0,0 +1,17 @@
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
+ export default _default;