ngx-octoprint-api-types
Version:
Octoprint API wrapper for angular
18 lines (17 loc) • 356 B
TypeScript
/**
* 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;
}