UNPKG

xcom2charpool

Version:

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

6 lines (5 loc) 230 B
import type { Reader } from '../Reader'; import { ArrayProperty } from '../Properties/ArrayProperty'; export interface ArrayFactory<T> { from(array: ArrayProperty, elementsType: string, factory: (reader: Reader) => any): T; }