UNPKG

xcom2charpool

Version:

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

7 lines (6 loc) 240 B
import type { Reader } from '../Reader'; import type { Writer } from '../Writer'; export declare class IntProperty { static from(reader: Reader, name: string, size: number): number; static to(target: Writer, value: number): void; }