UNPKG
@iot9x.com/nestjs-ucpaas-voice
Version:
latest (0.1.3)
0.1.3
0.1.2
0.1.1
0.1.0
0.0.2
0.0.1
nestjs 云之讯平台语音集成插件
@iot9x.com/nestjs-ucpaas-voice
/
dist
/
interfaces
/
response
/
base.response.interface.d.ts
9 lines
(8 loc)
•
195 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
export
interface
BaseResponse
<
T
> {
/** 操作是否成功 */
success: boolean;
/** 成功时返回的数据 */
data?: T;
/** 错误时的错误信息 */
error?:
string
; }