xcom2charpool
Version:
Library for reading, manipulating, and managing XCOM 2 character pool binary files, supporting both browser and Node.js environments.
11 lines (10 loc) • 368 B
TypeScript
import type { Reader } from '../Reader';
import type { Writer } from '../Writer';
/** Enum */
export declare class ByteProperty {
readonly type: string;
readonly value: string;
constructor(type: string, value: string);
static from(reader: Reader, name: string, size: number): ByteProperty;
static to(target: Writer, value: ByteProperty): number;
}