dolphindb 2.0.934 → 2.0.935

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/index.d.ts CHANGED
@@ -185,7 +185,7 @@ export type DdbStringObj = DdbObj<string>;
185
185
  export type DdbVectorObj = DdbObj<DdbVectorValue>;
186
186
  export type DdbVectorAnyObj = DdbObj<DdbObj[]>;
187
187
  export type DdbVectorStringObj = DdbObj<string[]>;
188
- export type DdbTableObj = DdbObj<DdbVectorObj[]>;
188
+ export type DdbTableObj<TColumns extends DdbVectorObj[] = DdbVectorObj[]> = DdbObj<TColumns>;
189
189
  export type DdbDictObj = DdbObj<[DdbVectorObj, DdbVectorObj]>;
190
190
  export type DdbMatrixObj = DdbObj<DdbMatrixValue>;
191
191
  export type DdbChartObj = DdbObj<DdbChartValue>;