UNPKG

ngx-octoprint-api-types

Version:
18 lines (17 loc) 356 B
/** * Information regarding the size of the printed model */ export interface IDimensions { /** * The depth of the printed model, in mm */ depth: number; /** * The height of the printed model, in mm */ height: number; /** * The width of the printed model, in mm */ width: number; }