UNPKG

millheat-js

Version:

Javascript client to ease the use of the Mill Open API V2

9 lines (8 loc) 148 B
/** Generic API Result */ export type Result<T> = { errorCode: number; message: string; statusCode: number; success: boolean; data: T; };