UNPKG
@iot9x.com/nestjs-tdengine-restful
Version:
latest (0.0.6)
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
NestJS TDengine 驱动——基于Restful
@iot9x.com/nestjs-tdengine-restful
/
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
; }