UNPKG

xcom2charpool

Version:

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

9 lines (8 loc) 204 B
/** * Value object for ByteProperty preserving both type name and value. */ export declare class BytePropertyValue { type: string; value: string; constructor(type: string, value: string); }