UNPKG
@nebulaglitch/gcode
Version:
latest (0.0.2)
0.0.2
0.0.1
A library to generate gcode output
github.com/CrimsonBastille/gcode
CrimsonBastille/gcode
@nebulaglitch/gcode
/
dist
/
argument.d.ts
9 lines
(8 loc)
•
207 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
declare
class
Argument
{
private
label;
private
value;
constructor
(
label
:
string
,
value
:
string
|
number
);
processValue
():
string
|
number
;
toString
():
string
; }
export
default
Argument
;