UNPKG
ngx-octoprint-api-types
Version:
latest (0.0.1)
0.0.1
Octoprint API wrapper for angular
github.com/avmaisak/ngx-octoprint
avmaisak/ngx-octoprint
ngx-octoprint-api-types
/
lib
/
interfaces
/
common
/
filament
/
filament.d.ts
14 lines
(13 loc)
•
245 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/** * The estimated usage of filament */
export interface IFilament {
/** * The length of filament used, in mm */
length: number;
/** * The volume of filament used, in cm³ */
volume: number; }