@elyx-code/project-logic-tree 0.0.7159 → 0.0.7160
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/dist/index.cjs +99 -99
- package/dist/index.d.ts +11 -0
- package/dist/index.js +1259 -1255
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -23510,6 +23510,8 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
23510
23510
|
|
|
23511
23511
|
export declare const getTimezoneOffsetOperation: IActionDescriptorTransfer;
|
|
23512
23512
|
|
|
23513
|
+
export declare function getTopLeftCellFromRange(rangeObj: any): string;
|
|
23514
|
+
|
|
23513
23515
|
/**
|
|
23514
23516
|
* Given two function-declarations or action-descriptors
|
|
23515
23517
|
* That could be implementations or extensions of each other
|
|
@@ -27657,6 +27659,15 @@ export declare const batchUpdateSpreadsheetSpreadsheetIdInputParentRef: IActionD
|
|
|
27657
27659
|
|
|
27658
27660
|
export declare type IsoWeekday1Mon7Sun = 1 | 2 | 3 | 4 | 5 | 6 | 7;
|
|
27659
27661
|
|
|
27662
|
+
export declare interface ISpreadsheetRangeData {
|
|
27663
|
+
sheet?: string;
|
|
27664
|
+
startRow?: string;
|
|
27665
|
+
startColumn?: string;
|
|
27666
|
+
endRow?: string;
|
|
27667
|
+
endColumn?: string;
|
|
27668
|
+
namedRange?: string;
|
|
27669
|
+
}
|
|
27670
|
+
|
|
27660
27671
|
export declare function isPromise(obj: any): obj is Promise<any>;
|
|
27661
27672
|
|
|
27662
27673
|
declare interface ISQLFunctionArgument {
|