interface Dwg_Field_Value {
    bin?: Uint8Array<ArrayBufferLike>;
    data?: Dwg_Field_Value_Data_Type;
    message?: string;
    success: boolean;
}

Properties

bin?: Uint8Array<ArrayBufferLike>

LibreDWG does not support converting strings to Unicode based on the DWG file’s codepage. If the codepage is not UTF-8, the raw string byte array is returned instead. It is the client’s responsibility to perform the conversion to Unicode. This field is used to store the raw string byte array if the DWG file's codepage isn't utf-8.

message?: string
success: boolean