ohpm install 之后的使用
ohpm install protobuf 这个库之后,我看里面有base64的子模块,但是不知道如何导入使用,请教一下如何使用,其中的index.d.ts文件内容如下:
/**
* Calculates the byte length of a base64 encoded string.
* @param {string} string Base64 encoded string
* @returns {number} Byte length
*/
export function length(string: string): number;
/**
* Encodes a buffer to a base64 encoded string.
* @param {Uint8Array} buffer Source buffer
* @param {number} start Source start
* @param {number} end Source end
* @returns {string} Base64 encoded string
*/
export function encode(buffer: Uint8Array, start: number, end: number): string;
/**
* Decodes a base64 encoded string to a buffer.
* @param {string} string Source string
* @param {Uint8Array} buffer Destination buffer
* @param {number} offset Destination offset
* @returns {number} Number of bytes written
* @throws {Error} If encoding is invalid
*/
export function decode(string: string, buffer: Uint8Array, offset: number): number;
/**
* Tests if the specified string appears to be base64 encoded.
* @param {string} string String to test
* @returns {boolean} `true` if it appears to be base64 encoded, otherwise false
*/
export function test(string: string): boolean;
HarmonyOS
赞
收藏 0
回答 1
待解决
相关问题
ohpm config set registry 设置了源之后 如何恢复ohpm自己本来的源啊
2184浏览 • 1回复 待解决
通过ohpm install 第三方npm包,报错
1253浏览 • 1回复 待解决
使用ohpm发布tgz文件时报错
684浏览 • 1回复 待解决
如何使用ohpm引入三四方库
2723浏览 • 3回复 待解决
使用安装命令报错install invalid hap size
7495浏览 • 1回复 待解决
使用position之后height不生效
2324浏览 • 1回复 待解决
应用IDE升级到Canary2之后,版本号报错ohpm ERROR : Found exception: Error
650浏览 • 1回复 待解决
ohpm not set up有了解的吗?
2457浏览 • 2回复 待解决
ohpm下架发布产物后,重新产物不能使用先前的版本号
244浏览 • 1回复 待解决
failed to install bundle. error: install parse profile missing prop.
9042浏览 • 1回复 待解决
ohpm publish 推送har包大小的限制
548浏览 • 1回复 待解决
ohpm的har包文件存储集群化
314浏览 • 1回复 待解决
mac系统,ohpm下载内容的缓存地址
1034浏览 • 1回复 待解决
参数不识别(ohpm run)
605浏览 • 1回复 待解决
Unable to install Toolchains有懂的吗?
7252浏览 • 1回复 待解决
#鸿蒙学习大百科#如何使用ohpm安装三方库?
126浏览 • 1回复 待解决
ohpm unpublish 对于带group的不成功
632浏览 • 1回复 待解决
#鸿蒙学习大百科#内网开发环境升级ide之后发现用户下面的.ohpm/.ohpmrc配置的代理服务器无法生效
66浏览 • 1回复 待解决
ohpm私仓找不到中心仓库的库
46浏览 • 1回复 待解决
安装HAP包报错:“failed to install bundle. install debug type not same”
2107浏览 • 1回复 待解决
ohpm安装失败怎么回事?
2265浏览 • 1回复 待解决
求告知ohpm如何迁移仓
245浏览 • 1回复 待解决
ohpm dayjs编译不通过
39浏览 • 1回复 待解决
搭建ohpm私仓服务疑问?
586浏览 • 1回复 待解决
ohpm publish如何指定秘钥库密码ohpm publish如何指定秘钥库密码
274浏览 • 1回复 待解决
此方法属于三方库 protobufjs中定义的方法,在三方库里使用的,如果在HarmonyOS中使用base64,可以参考: https://developer.huawei.com/consumer/cn/doc/harmonyos-references-V5/js-apis-util-V5#base64helper9。