@nebulaglitch/gcode
Version:
A library to generate gcode output
39 lines (38 loc) • 2.36 kB
TypeScript
import { default as Command } from './command';
import { default as CmdGroup } from './cmdgroup';
import { default as GcodePrinter } from './gcodeprinter';
import { default as FeedVelocity } from './commands/feedvelocity';
import { default as SpindleSpeed } from './commands/spindlespeed';
import { default as RapidMove } from './commands/rapidmove';
import { default as FeedMove } from './commands/feedmove';
import { default as Comment } from './commands/comment';
import { default as Dwell } from './commands/dwell';
import { default as ClockwiseArc } from './commands/clockwisearc';
import { default as CounterClockwiseArc } from './commands/counterclockwisearc';
import { default as SubprogramCall } from './commands/subprogramcall';
import { default as SetLocalCoordinates } from './commands/setlocalcoordinates';
import { default as MacroCall } from './commands/macrocall';
import { default as GMacroCall } from './commands/gmacrocall';
import { default as ToolSelect } from './commands/toolselect';
import { default as Question } from './commands/question';
import { default as JogZ } from './commands/jogz';
import { default as JogY } from './commands/jogy';
import { default as JogW } from './commands/jogw';
import { default as Jog2 } from './commands/jog2';
import { default as Jog4 } from './commands/jog4';
import { default as Move2 } from './commands/move2';
import { default as MoveZ } from './commands/movez';
import { default as MoveX } from './commands/movex';
import { default as MoveY } from './commands/movey';
import { default as MoveW } from './commands/movew';
import { default as CutGCircle } from './commands/cutgcircle';
import { default as AbsoluteMode } from './commands/absolutemode';
import { default as Literal } from './commands/literal';
import { default as Mach3Comment } from './commands/mach3comment';
import { default as ArcMove } from './commands/arcmove';
declare const name = "Gcode";
declare const myObject: {
name: string;
version: string;
};
export { name, myObject, Command, CmdGroup, ClockwiseArc, CounterClockwiseArc, Dwell, GcodePrinter, FeedVelocity, SpindleSpeed, RapidMove, FeedMove, Comment, SetLocalCoordinates, SubprogramCall, ToolSelect, MacroCall, GMacroCall, Question, JogZ, JogY, JogW, Jog2, Jog4, Move2, MoveZ, MoveY, MoveX, MoveW, CutGCircle, AbsoluteMode, Literal, Mach3Comment, ArcMove };