Skip to content

Instantly share code, notes, and snippets.

@ConnorRigby
Created December 21, 2016 21:56
Show Gist options
  • Save ConnorRigby/bf63c2e3519ae347daeedf08255308e2 to your computer and use it in GitHub Desktop.
Save ConnorRigby/bf63c2e3519ae347daeedf08255308e2 to your computer and use it in GitHub Desktop.
export interface Coordinate {
kind: "coordinate";
args: {
format: "step" | "mm";
x: number;
y: number;
z: number;
};
comment?: string | undefined;
body?: (undefined)[] | undefined;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment