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