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.
19 lines (18 loc) • 1.23 kB
TypeScript
import * as flatbuffers from 'flatbuffers';
import { STACKED_TEXT_ALIGN } from '../duc/stacked-text-align';
export declare class StackFormatProperties {
bb: flatbuffers.ByteBuffer | null;
bb_pos: number;
__init(i: number, bb: flatbuffers.ByteBuffer): StackFormatProperties;
static getRootAsStackFormatProperties(bb: flatbuffers.ByteBuffer, obj?: StackFormatProperties): StackFormatProperties;
static getSizePrefixedRootAsStackFormatProperties(bb: flatbuffers.ByteBuffer, obj?: StackFormatProperties): StackFormatProperties;
upperScale(): number;
lowerScale(): number;
alignment(): STACKED_TEXT_ALIGN | null;
static startStackFormatProperties(builder: flatbuffers.Builder): void;
static addUpperScale(builder: flatbuffers.Builder, upperScale: number): void;
static addLowerScale(builder: flatbuffers.Builder, lowerScale: number): void;
static addAlignment(builder: flatbuffers.Builder, alignment: STACKED_TEXT_ALIGN): void;
static endStackFormatProperties(builder: flatbuffers.Builder): flatbuffers.Offset;
static createStackFormatProperties(builder: flatbuffers.Builder, upperScale: number, lowerScale: number, alignment: STACKED_TEXT_ALIGN | null): flatbuffers.Offset;
}