UNPKG

@iot9x.com/nestjs-tdengine-restful

Version:

NestJS TDengine 驱动——基于Restful

9 lines (8 loc) 195 B
export interface BaseResponse<T> { /** 操作是否成功 */ success: boolean; /** 成功时返回的数据 */ data?: T; /** 错误时的错误信息 */ error?: string; }