@hyext/types-ext-sdk-hy 3.17.0-beta.14 → 3.17.0-beta.16
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 +2 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -5003,12 +5003,14 @@ type ReadRsp = {
|
|
|
5003
5003
|
/**
|
|
5004
5004
|
* 读文件参数
|
|
5005
5005
|
* @property fd - 文件描述符
|
|
5006
|
+
* @property arrayBuffer - 数据写入的缓冲区,必须是 ArrayBuffer 实例
|
|
5006
5007
|
* @property [offset] - 缓冲区中的写入偏移量,默认0
|
|
5007
5008
|
* @property [length] - 要从文件中读取的字节数,默认0
|
|
5008
5009
|
* @property [position] - 文件读取的起始位置
|
|
5009
5010
|
*/
|
|
5010
5011
|
type ReadReq = {
|
|
5011
5012
|
fd: string;
|
|
5013
|
+
arrayBuffer: ArrayBuffer;
|
|
5012
5014
|
offset?: number;
|
|
5013
5015
|
length?: number;
|
|
5014
5016
|
position?: number;
|