hilink-ts
Version:
智能家居hilink扩展h5应用工具开发
16 lines (15 loc) • 372 B
TypeScript
import { IDeviceError } from "./code";
import { HuaweiTime } from "./time";
export interface IHistoryLog<S, D> {
devId: string;
gatewayId: string;
sid: S;
data: D;
timestamp: HuaweiTime;
}
export interface IHistoryLogResult<S, D> extends IDeviceError {
totalCount: number;
pageNo: number;
pageSize: number;
list: IHistoryLog<S, D>[];
}