ducjs
Version:
The duc 2D CAD file format is a cornerstone of our advanced design system, conceived to cater to professionals seeking precision and efficiency in their design work.
20 lines (19 loc) • 1.22 kB
TypeScript
import * as flatbuffers from 'flatbuffers';
import { DucPlotStyle } from '../duc/duc-plot-style';
import { PlotLayout } from '../duc/plot-layout';
import { _DucStackElementBase } from '../duc/duc-stack-element-base';
export declare class DucPlotElement {
bb: flatbuffers.ByteBuffer | null;
bb_pos: number;
__init(i: number, bb: flatbuffers.ByteBuffer): DucPlotElement;
static getRootAsDucPlotElement(bb: flatbuffers.ByteBuffer, obj?: DucPlotElement): DucPlotElement;
static getSizePrefixedRootAsDucPlotElement(bb: flatbuffers.ByteBuffer, obj?: DucPlotElement): DucPlotElement;
stackElementBase(obj?: _DucStackElementBase): _DucStackElementBase | null;
style(obj?: DucPlotStyle): DucPlotStyle | null;
layout(obj?: PlotLayout): PlotLayout | null;
static startDucPlotElement(builder: flatbuffers.Builder): void;
static addStackElementBase(builder: flatbuffers.Builder, stackElementBaseOffset: flatbuffers.Offset): void;
static addStyle(builder: flatbuffers.Builder, styleOffset: flatbuffers.Offset): void;
static addLayout(builder: flatbuffers.Builder, layoutOffset: flatbuffers.Offset): void;
static endDucPlotElement(builder: flatbuffers.Builder): flatbuffers.Offset;
}