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 StrProperty { static from(reader: Reader, name: string, size: number): string; static to(target: Writer, value: string): void; }