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.
15 lines (14 loc) • 828 B
TypeScript
import * as flatbuffers from 'flatbuffers';
import { Margins } from '../duc/margins';
export declare class PlotLayout {
bb: flatbuffers.ByteBuffer | null;
bb_pos: number;
__init(i: number, bb: flatbuffers.ByteBuffer): PlotLayout;
static getRootAsPlotLayout(bb: flatbuffers.ByteBuffer, obj?: PlotLayout): PlotLayout;
static getSizePrefixedRootAsPlotLayout(bb: flatbuffers.ByteBuffer, obj?: PlotLayout): PlotLayout;
margins(obj?: Margins): Margins | null;
static startPlotLayout(builder: flatbuffers.Builder): void;
static addMargins(builder: flatbuffers.Builder, marginsOffset: flatbuffers.Offset): void;
static endPlotLayout(builder: flatbuffers.Builder): flatbuffers.Offset;
static createPlotLayout(builder: flatbuffers.Builder, marginsOffset: flatbuffers.Offset): flatbuffers.Offset;
}