dolphindb 2.0.913 → 2.0.915
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 +1 -0
- package/browser.js.map +1 -1
- package/docs.en.json +166 -29
- package/docs.zh.json +115 -26
- package/index.d.ts +2 -1
- package/index.js +1 -3
- package/index.js.map +1 -1
- package/package.json +3 -4
- package/{theme.d.ts → theme.dark.d.ts} +5 -5
- package/theme.dark.js +235 -0
- package/theme.dark.js.map +1 -0
- package/theme.light.d.ts +60 -0
- package/{theme.js → theme.light.js} +3 -3
- package/theme.light.js.map +1 -0
- package/theme.js.map +0 -1
package/browser.d.ts
CHANGED
|
@@ -178,6 +178,7 @@ Uint8Array[] | // blob
|
|
|
178
178
|
DdbObj[] | // any
|
|
179
179
|
DdbSymbolExtendedValue | DdbArrayVectorValue | DdbDecimal32VectorValue | DdbDecimal64VectorValue;
|
|
180
180
|
export type DdbValue = DdbScalarValue | DdbVectorValue | DdbMatrixValue | DdbDictValue | DdbChartValue;
|
|
181
|
+
export type DdbStringObj = DdbObj<string>;
|
|
181
182
|
export type DdbVectorObj = DdbObj<DdbVectorValue>;
|
|
182
183
|
export type DdbVectorAnyObj = DdbObj<DdbObj[]>;
|
|
183
184
|
export type DdbVectorStringObj = DdbObj<string[]>;
|