dolphindb 3.0.41 → 3.0.42
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/README.md +221 -122
- package/browser.d.ts +1 -1
- package/docs.en.json +8278 -8278
- package/docs.zh.json +2004 -1980
- package/index.d.ts +1 -1
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -400,7 +400,7 @@ export interface ConvertOptions {
|
|
|
400
400
|
/** timestamp 类型转换为字符串表示时显示到秒还是毫秒 */
|
|
401
401
|
timestamp?: 's' | 'ms';
|
|
402
402
|
}
|
|
403
|
-
export declare function convert(type: DdbType, value: DdbValue, le: boolean, { blob, timestamp }?: ConvertOptions): string | number | bigint | boolean | Uint8Array |
|
|
403
|
+
export declare function convert(type: DdbType, value: DdbValue, le: boolean, { blob, timestamp }?: ConvertOptions): string | number | bigint | boolean | Uint8Array | number[] | Int8Array | Int16Array | Int32Array | Float32Array | Float64Array | BigInt64Array | string[] | Uint8Array[] | DdbFunctionDefValue | DdbDurationValue | DdbDecimal32Value | DdbDecimal64Value | BigInt128Array | DdbObj<DdbValue>[] | DdbSymbolExtendedValue | DdbArrayVectorValue | DdbDecimal32VectorValue | DdbDecimal64VectorValue | DdbDecimal128VectorValue | DdbDurationVectorValue | DdbMatrixValue | DdbChartValue | DdbTensorValue;
|
|
404
404
|
/** 转换一个向量到 js 原生数组 */
|
|
405
405
|
export declare function converts(type: DdbType, value: DdbVectorValue, rows: number, le: boolean, options?: ConvertOptions): any[];
|
|
406
406
|
export declare class DdbVoid extends DdbObj<undefined> {
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "dolphindb",
|
|
3
3
|
"description": "DolphinDB JavaScript API",
|
|
4
|
-
"version": "3.0.
|
|
4
|
+
"version": "3.0.42",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./index.js",
|
|
7
7
|
"browser": "./browser.js",
|
|
@@ -40,6 +40,6 @@
|
|
|
40
40
|
"dayjs": "^1.11.11",
|
|
41
41
|
"ipaddr.js": "^2.2.0",
|
|
42
42
|
"tslib": "^2.6.3",
|
|
43
|
-
"xshell": "^1.0.
|
|
43
|
+
"xshell": "^1.0.147"
|
|
44
44
|
}
|
|
45
45
|
}
|