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
/
commands
/
mach3comment.d.ts
9 lines
(8 loc)
•
281 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
default
as
Command
}
from
'../command'
;
import
{
default
as
Literal
}
from
'./literal'
;
declare
class
Mach3Comment
extends
Command
{
private
newline;
constructor
(
content
:
string
|
Literal
,
newline
?:
boolean
);
toString
():
string
; }
export
default
Mach3Comment
;