UNPKG

xcom2charpool

Version:

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

12 lines (11 loc) 295 B
/** * Value object for UE NameProperty including the instance id suffix. */ export declare class NamePropertyValue { #private; value: string; constructor(value: string, instanceId: number); get instanceId(): number; set instanceId(value: number); toString(): string; }