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