UNPKG

xcom2charpool

Version:

Library for reading, manipulating, and managing XCOM 2 character pool binary files, supporting both browser and Node.js environments.

10 lines (9 loc) 300 B
import { ObjectPropertyValue } from '../ObjectProperty'; /** * Value wrapper for structured properties carrying the struct type and payload. */ export declare class StructPropertyValue { type: string; value: ObjectPropertyValue; constructor(type: string, value: ObjectPropertyValue); }