UNPKG

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) 417 B
import type { Reader } from '../Reader'; import type { Writer } from '../Writer'; import { Packer } from '../Packer'; export declare class ArrayProperty { readonly length: number; readonly reader: Reader; constructor(length: number, reader: Reader); static from(reader: Reader, name: string, size: number): ArrayProperty; static to<T>(target: Writer, value: readonly T[], packer: Packer): void; }