UNPKG

@scalenc/nc-format

Version:

Library for handling TRUMPF NC file format.

9 lines (8 loc) 362 B
import { Expression } from './Expression'; import { ExpressionVisitor } from './ExpressionVisitor'; export declare class Variable implements Expression { name: string; fieldExpressions?: (Expression | null)[] | undefined; constructor(name: string, fieldExpressions?: (Expression | null)[] | undefined); visit(visitor: ExpressionVisitor): void; }